body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #ff3333, #3333cc);
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #000000;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#countdown {
    font-size: 1.5em;
    margin-bottom: 20px;
}

#subscribeForm {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input[type="email"] {
    padding: 10px;
    font-size: 1em;
    width: 200px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
}
