

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	font-family: Arial, Helvetica, sans-serif;
	color: #f0f0f0;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.main {
	width:660px;
	height:490px;
	border-radius:15px;
	background-color:rgba(16,16,16,0.3);	
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

}
.main1 {
	margin: 8%;

	}
hr { width:80%; margin: 0 auto;}

h1 {font-size:36px; font-weight:800;}
h3 {font-size:24px; font-weight:600;}


a,a:hover {
	text-decoration: none;
	color: #f0f0f0;
}

