#timerWrapper {
    text-align: center;
    background-color: #09538a;
    padding: 1%;
    margin: auto;
    border-radius: 20px;
    color: #fff;
    font-size: 1.5em;
}

#timerInPage {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-family: Arial, sans-serif;
    color: #fff;
    font-weight: bold;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.number {
    font-size: 50px;
    font-weight: bold;
}

.label {
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    .number {
        font-size: 25px;
        font-weight: bold;
    }
    .timerInPage {
        gap: 15px;
    }
    .label {
        font-size: 12px;
    }
}