@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&family=Roboto&display=swap');

html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
}

body {
	height: 100vh;
	font-family: 'Roboto', sans-serif;
	background-color: #212121;
	color: white;
}

* {
	box-sizing: border-box;
}

.container-compteur {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
}

.container-compteur h1 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 30px;
	margin: 0px 0px 20px 0px;
	text-align: center;
	padding: 0px 10px;
}

.container-compteur #compteur {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.container-compteur p {
	font-size: 30px;
	margin: 0px 10px;
}
.container-compteur p span {
	font-size: 50px;
	color: dodgerblue;
}

@media screen and (max-width : 840px) {
	.container-compteur #compteur {
		flex-direction: column;
		align-items: flex-start;
	}
	.container-compteur p {
		margin: 10px 0px;
	}
}