body {
	background-color: #f2f2f2;
}
.content {
	margin-left: 8%;
	margin-right: 8%;
	border-radius: 20px;
	background-color: white;
	padding: 1px 10px;
	font-family: 'Mulish', sans-serif;
	font-size: 18px;
}
.center {
	display: flex;
	justify-content: center;
}
h1 {
	margin-block-start: 0.4em;
	margin-bottom: 25px;
	text-align: center;
	font-size: 34px;
}
h2 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 22px;
}
p {
	margin-top: 10px;
	margin-bottom: 10px;
}
.rct {
	margin-bottom: 15px;
}

.classLoader {
	border: 8px solid white;
	border-top: 8px solid #1AA715;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	animation: spin 1.2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #0d0d0d;
	}
	.content {
		background-color: #191919;
		color: white;
	}
	.classLoader {
		border: 8px solid #191919;
		border-top: 8px solid #1AA715;
	}
}

@media only screen and (max-width: 768px) {
	.content {
		margin-left: 1%;
		margin-right: 1%;
	}
}
@media only screen and (min-width: 1536px) {
	.content {
		margin-left: 16%;
		margin-right: 16%;
	}
}

@font-face {
	font-family: 'Mulish';
	src: url('Mulish.ttf') format('truetype');
}