body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    color: #333;
}

p {
    color: #666;
}

#countdown {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.countdown-item {
    margin: 0 10px;
}

#days,
#hours,
#minutes,
#seconds {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

/* Add additional styling as needed */
