@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");

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

body,
html {
    height: 100%;
    font-family: "Roboto Slab", serif;
    color: #fff;
    background: linear-gradient(-110deg, #ffffff, #04408f);
    overflow: hidden;
}

.container {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1597004568493-fb1e255a2531') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(1, 57, 61, 0.438);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    animation: fadeIn 2s ease-in-out;
}

.brand img {
    width: 350px;
}

.tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.coming-soon {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #fff;
    text-shadow: 0 0 10px #003cff;
}

.description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.countdown {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 5px #000;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.notify-form input {
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    width: 60%;
}

.notify-form button {
    padding: 0.7rem 1.2rem;
    border: none;
    background-color: #122d66;
    color: #ffffff;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-form button:hover {
    background-color: #ffaa00;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}