@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;
	}
}
@media (min-width:768px){
	.contents{
		flex-direction: row;
	}
}
h1{
	text-align: center;
}
.dancer{
	margin: 10px auto;
}
.dancer-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	justify-items: center;
  	align-items: center;
	gap: 20px;
}
.text{
	text-align: 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;
}