* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#preloader {
	display: flex;
	position: relative;
	top: 0;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	overflow: hidden;
	background-color: black;
}

#preloader img {
	height: 50%;
	width: auto;
	animation: rotateAnimation 4s linear infinite;
}
@keyframes rotateAnimation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#preloader h1 {
	font-size: 1.3rem;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}
