.cnt-sec {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-top: 80px; /* Adjust padding for smaller screens */
    padding-bottom: 20px; /* Adjust padding for smaller screens */
}

.countdown-container {
    text-align: center;
    padding: 10px; /* Adjust padding for smaller screens */
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 20px; /* Adjust font size for smaller screens */
    margin: 10px 0;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.countdown-item {
    text-align: center;
    margin: 5px 10px; /* Adjust margins for smaller screens */
}

.countdown-item span {
    font-size: 24px; /* Adjust font size for smaller screens */
    font-weight: bold;
}

.countdown-label {
    font-size: 12px; /* Adjust font size for smaller screens */
    font-weight: normal;
}

/* Media query for screens smaller than 768px (adjust as needed) */
@media screen and (max-width: 768px) {
    .cnt-sec {
        padding-top: 100px;
        padding-bottom: 10px;
    }

    .countdown-container {
        padding-top: 5px;
        margin-top: 90px;
    }

    h1 {
        font-size: 16px;
    }

    .countdown-item {
        margin: 3px 5px;
    }

    .countdown-item span {
        font-size: 18px;
    }

    .countdown-label {
        font-size: 10px;
    }
}
