/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Make the page full-height and full-width */
html, body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

/* Full page background with an image and animated color */
body {
    background-image: url('one.jpg'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    animation: backgroundColorChange 10s infinite alternate;
}

/* Background color animation */
@keyframes backgroundColorChange {
    0% {
        background-color: rgba(0, 0, 0, 0.5);
    }
    25% {
        background-color: rgba(44, 62, 80, 0.5);
    }
    50% {
        background-color: rgba(52, 152, 219, 0.5);
    }
    75% {
        background-color: rgba(231, 76, 60, 0.5);
    }
    100% {
        background-color: rgba(39, 174, 96, 0.5);
    }
}

/* Center the content both vertically and horizontally */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    padding: 20px;
}

/* Heading styles */
.coming-soon-container h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.coming-soon-container h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.coming-soon-container p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Countdown timer styles */
#countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.time {
    font-size: 2rem;
    font-weight: bold;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.time span {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Email form styles */
#notify-form {
    display: flex;
    align-items: center;
}

#notify-form input[type="email"] {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 250px;
}

#notify-form button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #e74c3c;
    color: white;
    cursor: pointer;
}

#notify-form button:hover {
    background-color: #c0392b;
}
