@charset "UTF-8";
/* CSS Document */
body{
	margin:0;
	background-color:rgba(255,255,0,1.00);
	color: #0086FF;
}
.header{
	padding:20px;
	text-align: center;
}
.header-container{
	display: flex;
	flex-direction:row;
	justify-content: space-between;
	align-items: center;
}
.nav a{
	text-decoration: none;
}
@media (max-width: 767px){
	.nav{
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		background: rgba(32,124,229,1);
		transition: transform 0.2s;
	}
	.open .nav{
		transform: translate(-100%, 0);
	}
	.open body{
		position: fixed;
		overflow: hidden;
	}
	.nav ul{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		list-style: none;
		height: 100%;
		gap: 20px;
		color: black;
	}
}
@media (min-width:768px){
	.nav{
		height:60px;
		text-align: center;
	}
	.nav ul{
		background: rgba(32,124,229,1);
		background: -moz-linear-gradient(top, rgba(32,124,229,1) 0%, rgba(155,204,250,1) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(32,124,229,1)), color-stop(100%, rgba(155,204,250,1)));
		background: -webkit-linear-gradient(top, rgba(32,124,229,1) 0%, rgba(155,204,250,1) 100%);
		background: -o-linear-gradient(top, rgba(32,124,229,1) 0%, rgba(155,204,250,1) 100%);
		background: -ms-linear-gradient(top, rgba(32,124,229,1) 0%, rgba(155,204,250,1) 100%);
		background: linear-gradient(to bottom, rgba(32,124,229,1) 0%, rgba(155,204,250,1) 100%);
		list-style: none;
		font-size: 16px;
		padding:0;
		display:flex;
		gap:5px;
	}
	.nav li:not(last-child){
		margin-right:10px;
	}
}
@media (max-width:767px){
	.navbtn{
		padding: 0;
		outline: none;
		border: none;
		cursor: pointer;
		background: transparent;
		color: black;
		font-size: 30px;
	}
	.open .navbtn{
		z-index:110;
	}
	.navbtn .fa-bars{
		display: revert;
	}
	.open .navbtn .fa-bars{
		display: none;
	}
	.navbtn .fa-times{
		display: none;
	}
	.open .navbtn .fa-times{
		display: revert;
	}
}
@media (min-width:768px){
	.navbtn{
		display: none;
	}
}
.banner{
	margin:5px auto;
	width:600px;
}
.contents{
	display: grid;
	place-items: center;
	grid-auto-columns: 1fr; 
  	grid-auto-rows: 1fr; 
  	grid-template-columns: 1fr; 
  	grid-template-rows: 1fr 1fr 1fr; 
  	gap: 10px 10px; 
  	grid-template-areas: 
    "main"
    "ad"
    "movie";  
}
.main{
	grid-area: main;
}
.ad{
	grid-area: ad;

	display: flex;
	flex-direction: row;
}
.movie{
	grid-area: movie;
}
video{
	max-width: 40%;
	max-height: 40%;
}
@media (min-width:768px){
	.contents{
		display: grid;
		place-items: center;
		grid-auto-columns: 1fr; 
		grid-auto-rows: 1fr; 
		gap: 10px 10px; 
		grid-template-areas: 
		"main ad"
		"main ad"
		"movie movie";  
		gap: 20px 20px;
	}
	.main{
		justify-self: center; 
  		align-self: center;
		grid-area: main;
	}
	.ad{
		flex-direction: column;
	}
	.movie{
		justify-self: center; 
  		align-self: center; 
  		grid-area: movie; 
	}
	.frame-video{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}
}
.footer{
	height:5vh;
	padding:20px;
	font-size:16px;
}
.footer ul{
	list-style: none;
	display:flex;
	justify-content: center;
	align-items: center;
}
.footer li{
	margin-right:20px;
}
.footer a{
	text-decoration: none;
}
.footer-copy{
	text-align: center;
}
