/*MAIN SETTINGS*/

html,body {
	margin:0;
	padding:0;
	height:100%;
	font-family: 'Poppins', sans-serif;
	font-size:0.9em;
	color: #fff;
	background-color:#25a8e0;
    animation: colors 25s infinite;
}

@keyframes colors {
    0%   {background-color: #25a8e0;}
    25%  {background-color: #3ab54a;}
    50%  {background-color: #fbaf41;}
    75% {background-color: #652e90;}
	100%   {background-color: #25a8e0;}
}

#main-container {
	padding:0;
	margin:0;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;	
}

a {
	color:#fff;
	text-decoration:none;
	outline:none;
}

img:hover {
	opacity:0.8;
}

p {
	margin-bottom:15px;
}

h1 {
	font-weight:600;
	font-size:1.8em;
	margin-bottom:15px;
}

.text-min {
	font-size:0.8em;
}

#center {
	position:absolute;
	top:30%;
	left:50%;
	width:300px;
	height:320px;
	margin-top:-160px;
	margin-left:-150px;
	text-align:center;
	letter-spacing:0.1em;
}

#center img {
	margin-bottom: 26px;	width:300px;
}

#center .line {
	
	width:300px;
	height:14px;
	background-image:url(../line.svg);
	background-repeat:no-repeat;
	background-position:center center;
	margin-bottom:40px;	
}
h3 {
    width: 100%;
    border: 1.5px solid #fff;
    margin-bottom: 0px;
    border-radius: 5px;

  
}
h3:hover {
	opacity:0.8;
background-color: #464db1;
    cursor: pointer;
}