@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
body {
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
	color: #000;
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s; /* Firefox < 16 */
	-ms-animation: fadein 2s; /* Internet Explorer */
	-o-animation: fadein 2s; /* Opera < 12.1 */
	animation: fadein 2s;
}
a, a:link, a:focus {
	color:#000;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.main {
	top: 39%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.logo img {
	width: 190px;
}
.logo img:hover {
	transform: rotate(360deg);
	-webkit-transition: transform 1500ms ease;
	-moz-transition: transform 1500ms ease;
	-ms-transition: transform 1500ms ease;
	-o-transition: transform 1500ms ease;
	transition: transform 1500ms ease;
	cursor: pointer;
}
.text {
	width: 100%;
	text-align: center;
	font-size: 11px;
	position: fixed;
	bottom: 10%;
}
.contact {
	width: 100%;
	text-align: center;
	font-size: 18px;
	color: #000;
	margin: 20px 0;
}
.contact a:hover {
	color: #333;
}
 @keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Internet Explorer */
@-ms-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
