/* BEM naming convention used throughout */

/* Block: page */
.page {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #800080, #4b0082);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
    font-family: 'Inter', Arial, sans-serif;
}

/* Block: coming-soon */
.coming-soon {
    text-align: center;
}

/* Element: coming-soon__title */
.coming-soon__title {
    font-size: 4rem;
    color: white;
    text-shadow: 5px 5px 12px rgba(0, 0, 0, 0.9);
}

/* Animation for the gradient */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Block: footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Element: footer__text */
.footer__text {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

/* Reset for HTML and body */
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
