/* Basic reset */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents scrollbars from appearing due to full-screen elements */
    font-family: 'Arial', sans-serif;
    /* color: #fff; // Already set */
    justify-content: center;
    align-items: center;
    text-align: center;

    /* New background animation */
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff; /* Ensure text color is still white and visible */
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    position: relative; /* To allow text to be on top of the animation */
    z-index: 10;
    opacity: 0; /* Initially hidden for fade-in animation */
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 1s; /* Start fade-in after a delay */
}

#coming-soon-text {
    font-size: 3em;
    border-right: 0.15em solid orange; /* Cursor for typewriter effect */
    white-space: nowrap; /* Keeps the content on a single line */
    overflow: hidden; /* Ensures the text is not visible until typed out */
    letter-spacing: .15em; /* Adjust as needed */
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind the text content */
}
