body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #c7e9fb;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 36px;
    margin: 10px 0;
}

p {
    font-size: 18px;
    margin: 15px 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.countdown div {
    text-align: center;
}

.countdown div span {
    font-size: 24px;
    font-weight: bold;
}

.email-signup {
    margin-top: 20px;
}

.email-signup input[type="email"] {
    padding: 10px;
    font-size: 16px;
    width: 70%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.email-signup button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.email-signup button:hover {
    background-color: #0056b3;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 14px;
    color: #666;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}