.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 30px;
}
.countdown-container .countdown-item {
    text-align: center;
}
.countdown-container .countdown-number {
    font-size: 30px;
    background: #000;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
    /* width: 65px;
    height: 65px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.countdown-container .countdown-label {
    text-transform: uppercase;
    font-size: 10px;
    margin-top: 5px;
    font-weight: 500;
}