<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.counter-body{
	margin: 0;
	font-family: "Roboto", sans-serif;
}

/*.counter-section {
	height: 100vh;
	background: #fefae0;
	display: grid;
	place-items: center;
	font-size: 90px;
}*/

.stats-container {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin: 30px auto;
	max-width: 1000px;
	padding-inline: 16px;
}

.stats-container .stat {
	background: #b85e2a;
	padding: 24px;
	text-align: center;
	color: #edf2f4;
}

.stats-container .stat .odometer {
	font-size: 50px;
	font-weight: bold;
	display: inline-block;
}

.stats-container .stat .type {
	padding-top: 10px;
	font-size: 20px;
}

.odometer.plus {
	position: relative;
}

.odometer.plus::after {
	content: "+";
	position: absolute;
	top: 0;
	right: -16px;
	font-size: 20px;
}

@media (max-width: 700px) {
	.stats-container {
		grid-template-columns: 1fr;
	}
}</pre></body></html>