
.grid-container {

    grid-template-columns: 1fr 1fr 1fr; 
    justify-items: center;
    width: 90%;
    height: auto;
    

}

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 15px;
}
.timer {
    display: block;
    background-color: #F3ECE3;
    border: 3px solid rgb(128, 0, 32);
    border-radius: 12px;
    color: rgb(128, 0, 32);
    width: 100px;
    padding: 10px 0;
}
.time {
    display: flex;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    justify-content: center;
}
.label {
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 768px) {

    .countdown, .time, .timer {
        display: none;
    }

    .grid-container {
        grid-template-columns: 1fr;
        
    }

}

