body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.time {
    margin: 0 10px;
}

.time span {
    font-size: 2em;
    display: block;
}

.subscription {
    margin-top: 20px;
}

.subscription input {
    padding: 8px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.subscription button {
    padding: 8px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.subscription button:hover {
    background-color: #3e8e41;
}