.countdown{
	margin-top:-2rem;
}
#countdown{
	display: flex;
	justify-content: center;
	gap:0;
}
.countdown .section div{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}
.countdown .section .label,
.countdown .section .number{
	width:100%;
	text-align: center;
}
.countdown .section:last-of-type .label{
	margin-left:.5rem;
}
.countdown .section span{
	position: relative;
}
.countdown .section .number{
	border-right:1px solid var(--grey);
	padding:0 1rem;
	margin-top:.5rem;
}
.countdown .section:last-of-type .number{
	border:0;
	padding-right:0;
}
#year, #month, #day, #hours, #minutes{
	display: none;
}
@media only screen and (max-width: 1680px) {
	.countdown{
		margin-top: -1rem;
	}
}