.time {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.timeSet {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timeCount {
    color: #cccccc;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 10px;
}

#days,
#hours,
#minutes,
#seconds {
    display: flex;
    width: 60px;
    height: 46px;
    background-color: rgb(70, 0, 0);
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 80px;
    margin-left: 20px;
    margin-right: 20px;
    cursor: default;
}

@media (max-width: 1300px) {
    #days,
    #hours,
    #minutes,
    #seconds {
        width: 50px;
        height: 40px;
        font-size: 1.3rem;
        margin-top: 80px;
        margin-left: 15px;
        margin-right: 15px;
    }
}


@media (max-width: 670px) {
    #days,
    #hours,
    #minutes,
    #seconds {
        width: 45px;
        height: 35px;
        font-size: 1.1rem;
        margin-top: 80px;
        margin-left: 10px;
        margin-right: 10px;
    }

}