@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

* {
	box-sizing: border-box;
}

/* 8. Screen reader */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border-width: 0;
}

body {
	background-color: #8e44ad;
	color: #fff;
	font-family: "Roboto Mono", sans-serif;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	/* gap: 0 4rem; */
	height: 100vh;
	/* overflow: hidden; */
	margin: 0;
}

.counter-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	margin: 0px 30px;
}

.counter {
	font-size: 3rem;
	margin-top: 10px;
}