

.countdown-wrapper {
    display: flex;
    justify-content: center;
}

#countdown {
    display: flex;
    width: 38em;
    text-align: center;
}

#countdown div {
    width: 25%;
    display: inline-block;
}

#countdown span {
    font-size: 4.3em;
    font-weight: 600;
    line-height: 1;
    color: var(--accent);
}

#countdown p {
    font-size: 1.2em;
    line-height: 1;
    margin: 0.6em 0 0;
	font-weight: 400;
}

@media only screen and (max-width: 870px) {
#countdown span {
    font-size: 3em;
}

#countdown p {
    font-size: 0.9em;
}
}