@font-face{
	font-family:play;
	src:url(fonts/Play-Regular.ttf)
}

body{
	margin: 0px;
	background-image: url(images/back.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: play;
	color: white;
	animation: opacity 1s;
}
@keyframes opacity{
	0%{opacity: 25%}
	50%{opacity: 50%}
	100%{opacity: 100%}
}


.top{
	height: 100px;
	justify-content: center;
	align-items: center;
	display: flex;
}
.top h1{
	font-size: 50px;
	animation-name: flash;
	animation-duration: 5s;
}
@keyframes flash{
	0%{opacity: 100%}
	25%{opacity: 75%}
	50%{opacity: 40%}
	75%{opacity: 75%}
	100%{opacity: 100%}

}
/*NAV BAR PART*/
.nav{
	height: 60px;
	background: #ffffff1c;
	align-items: center;
	display: flex;
}
.nav ul{
	list-style: none;
}
.nav li{
	display: inline-block;
	margin-right: 20px;
}
.nav a{
	color: white; 
	text-decoration: none;
	font-size: 22px;
}
.nav a:hover{
	border: 1.5px solid transparent;
	padding: 3px;
	background: transparent;
	animation: borderin 1s;
}
@keyframes borderin{
	0%{border-color: transparent;}
	50%{border-color: white;}
}


/*MIDDLE PART*/

.middle{
	justify-content: center;
	display: flex;
}
.middle p{
	width: 500px;
	line-height: 20px;
	word-spacing: 5px;
	text-align: justify;
	padding: 30px;
}

/*BOTTOM PART*/

.bottom{
	background: black;
	text-align: center;
	position: relative;
	top: 130px;
	padding: 5px;
}

@media (max-width: 720px){
	.top h1{font-size: 40px;}
	.nav a{font-size: 15px;}
	.bottom{
		position: relative;
		top: 0px;
	}
}