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

.coming-soon-container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

#countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

#countdown div {
    font-size: 1.5rem;
    text-align: center;
}

#countdown span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

#subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

#email {
    padding: 10px;
    font-size: 1rem;
    width: 250px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #ff6f61;
    color: #ffffff;
    cursor: pointer;
}

button:hover {
    background-color: #ff4a3d;
}