body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	font-family: unset;
	background: black;
}
.Section_top{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: contain;
	background-image: url(img5.png);
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	justify-content: center;
	animation: change 7s infinite ease-in-out;
}
.content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
}
.content h1{
    color: white;
    font-size: 60px;
    letter-spacing: 10px;
}
.content h2{
	color: white;
	font-size: 30px;
	letter-spacing: 5px;
}
.content  a{
	background: #85c1ee;
	padding: 10px 25px;
	text-decoration: none;
	font-size: 20px;
	border-radius: 20px;
}
.content a:hover{
	background: #034e88;
    color: white;
}
@keyframes change{
	0%{
		background-image: url(img1.jpg);
	}
	20%{
		background-image: url(img2.jpg);
	}
	40%{
		background-image: url(img3.jpg);
	}
	60%{
		background-image: url(img4.jpg);
	}
	80%{
		background-image: url(img5.png);
	}
	100%{
		background-image: url(img1.jpg);
	}
}