:root {
    --headline-font: "Poppins", serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    overflow: hidden;
    background-color: #172b28;
    background-image:
        linear-gradient(180deg, rgb(8 22 20 / 18%), rgb(8 22 20 / 50%)),
        url("../Images/BG.png");
    background-position: center, center top;
    background-repeat: no-repeat, repeat-y;
    background-size: cover, cover;
    animation: background-scroll 30s linear infinite;
}

@keyframes background-scroll {
    from {
        background-position: center, center top;
    }

    to {
        background-position: center, center 100vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
    }
}

.coming-soon {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.coming-soon h1 {
    margin: 0;
    color: #fffdf5;
    font-family: var(--headline-font);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 3px 24px rgb(0 0 0 / 35%);
}