body {
    font-family: 'DotGothic16',sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Adjust as needed */
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 100%;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap; /* Prevents the text from wrapping inside the box */
}

/* Base styles for the numbers */
#days, #hours, #minutes, #seconds {
    font-size: 3em;
    font-weight: bold;
    color: #da291c;
    line-height: 1.2;
}

/* Base styles for the labels */
.label {
    font-size: 2em;
    text-transform: uppercase;
    color: black;
    margin-top: 5px;
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }

    #countdown-container {
        padding: 15px; /* Less padding on small screens */
        gap: 8px; /* Reduce gap between boxes to save space */
    }

    #days, #hours, #minutes, #seconds {
        font-size: 1.5em; /* Significantly smaller font size for numbers */
    }

    .label {
        font-size: 0.7em; /* Smaller font size for labels */
    }
}