body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    gap: 10px; /* Adds gap between flex items */
    margin-top: 20px;
    max-width: 100%; /* Prevents horizontal scrolling */
    overflow: hidden; /* Hides overflow content */
}

.countdown div {
    padding: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    font-size: 2em;
    flex: 1; /* Makes the div take equal space */
    min-width: 120px; /* Minimum width */
    box-sizing: border-box; /* Ensures padding is included in width */
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .countdown div {
        font-size: 1.5em;
        padding: 15px;
    }
}