body, p, div, h1, h2, h3, h4, h5, h6 {
	font-family: 'IBM Plex Sans', sans-serif !important;
}

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

.loader {
	width: 2rem;
	height: 2rem;
	border: 5px solid hsl(212 34% 24% / 1);
	border-bottom-color: #fff;
	border-radius: 50%;
	display: inline-block;
	animation: rotation 1s linear infinite;
}

.loader-container {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: black
}
