@font-face{
	font-family: bebas;
	src: url(fonts/BebasNeue-Regular.ttf);
}

body{
	margin: 0px;
	background-image: url(images/back.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: bebas;
}

.container{
	margin: auto;
	height: 550px;
	width: 1100px;
	padding: 20px;
	border-radius: 2px;
	position: relative;
	top: 100px;
	background: #ffffffed;
	box-shadow: 5px 2.7px 3px;
	animation: opacity 1.5s;
}
@keyframes opacity{
	0%{opacity: 25%}
	100%{opacity: 100%}
}

/*TOP PART*/

.top{
	justify-content: center;
	display: flex;
}

.top ul{
	list-style: none;
}
.top li{
	display: inline-block; 
	margin: 50px;
}
.top a{
	color: black; 
	text-decoration: none;
	font-size: 30px;
	padding: 5px;
}

.top a:hover{
	border: 1.5px solid black;
	animation-name: borderin 1s;
}
@keyframes borderin{
	0%{border-color: white;}
	50%{border-color: black;}
}

/*MIDDLE PART*/
.middle{
	position: relative;
	top: -70px;
}

.middle h2{
	font-size: 80px;
}
.middle p{
	font-size: 40px;

}
.middle hr{
	width: 20%;
	height: 2px;
	position: relative;
	top: -110px;
	border: none;
	background: black;
}

@media (max-width:720px) {
	body{
		height: 100vh;
		background-position: center;
	}
	.container{
		width: 80%;
		height: 50%;
		padding: 5px;
		top: 20%;
	}
	.container .top li{
		margin: 5px;
		padding: 0px;
	}
	.container .top a{
		font-size: 20px;
	}
	.container h2{
		font-size: 40px;
	}
	.middle p{
		top: 0px;
	}
}