.root {
	display: block;
}
.container {
	width: 100%;
}
.mainLogo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	box-shadow: inset 0px 0px 20px 20px rgb(0 0 0 / 10%);
}
.mainLogo::before {
	content: "";
	display: inline-block;
	width: 95%;
	height: 100%;
	max-width: 640px;
	background: url("../../img/logo.png") no-repeat;
	background-position: center center;
	background-size: contain;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
	
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
