
.section{
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.section h1{
	text-align: center;
	font-size: 5rem;
	color: white;
	font-family: "cookie";
	background: transparent;
	padding: 20px;
	margin: 15px;
	z-index: 1;
}



.video-container{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

}

.color-overlay{
	position: absolute;
	top: 0;
	left: 0;
	background-color: black;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}

.judul{
	padding-top: 50px;
	text-align: center;
	color: blue white;
	
}


body{
	font-family: sans-serif;
	
}

header, nav, main, aside, footer{
	border: 1px solid grey;
	margin: 5px;
	padding: 5px;
}
main{
	float: left;
	width: 60%;
}
aside{
	float: left;
	width: 30%
}
footer{
	clear: both;
}