body {
	background-color: black;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	color: ghostwhite;
	font-family: sans-serif;
	gap: 50px;
}

.spinner {
	height: 100px;
	width: 100px;
	border: 15px solid ghostwhite;
	border-top-color: blueviolet;
	border-radius: 50%;
	animation: spin 1.5s ease-in-out infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}