body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #f0f0f0; /* Light gray background */
    display: flex; /* Center content vertically */
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Set minimum height for viewport */
}

.container {
    text-align: center;
    padding: 50px;
    background-color: #fff; /* White container background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

img {
    width: 200px; /* Adjust logo size as needed */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

li {
    margin-bottom: 10px;
}

#countdown {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

#countdown span {
    margin: 0 10px; /* Spacing between countdown elements */
}