.time-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.time-label {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    min-height: 34px;
}


.time-diff-label {
    min-height: 38px;
}

.time {
    font-size: 6rem;
    font-weight: bold;
    color: var(--brand-color);
    height: 192px;
}



@media screen and (max-width: 767px) {
.time {
    font-size: 3.5rem;
    height: 112px;
}
}