@keyframes show-logo {
	from {
		opacity: 0;
	}
	to {
		opacity: 100%;
	}
}
.loading-screen {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 2001;
	overflow: hidden;
	top: 0;
	left: 0;
}
.loading-screen div {
	position: absolute;
	width: 250px;
	height: 250px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	animation: show-logo 1s linear 1s 1 normal forwards;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('/logo.svg');
}
