body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

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

.logo h1 {
    color: #333;
}

.content h2 {
    color: #444;
    margin-top: 1rem;
}

.content p {
    color: #666;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.countdown-item {
    margin: 0 1rem;
    text-align: center;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.countdown-item span:last-child {
    display: block;
    color: #666;
}

.subscribe h3 {
    color: #444;
    margin-bottom: 1rem;
}

.subscribe form {
    display: flex;
    justify-content: center;
}

.subscribe input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 0.5rem;
}

.subscribe button {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe button:hover {
    background-color: #0056b3;
}
