body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: white;
    padding: 2em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1 {
    margin-bottom: 0.5em;
    color: #333;
}

p {
    color: #666;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 2em 0;
}

.countdown-item {
    margin: 0 1em;
}

.countdown-item span {
    display: block;
    font-size: 2em;
    color: #333;
}

.countdown-item p {
    margin: 0;
    color: #666;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.subscribe-form input[type="email"] {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.subscribe-form button {
    padding: 0.5em 1em;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    outline: none;
}

.subscribe-form button:hover {
    background-color: #555;
}
