* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.coming-soon-container {
    text-align: center;
    max-width: 400px;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    color: #333;
}

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

.countdown {
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.countdown div {
    flex: 1;
    padding: 10px;
}

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

.subscription-form input[type="email"] {
    padding: 10px;
    font-size: 1em;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

.subscription-form button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #333;
    border: none;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .subscription-form input[type="email"] {
        width: 60%;
    }
}
