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

.noto-sans-one {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-two {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-three {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-four {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-five {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-six {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-seven {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-eight {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

.noto-sans-nine {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 1.6px;
    font-variation-settings:
        "wdth" 100;
}

body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
    position: relative; /* Ensures child elements like #soon-container are positioned relative to the body */
}

#lottie-container {
    max-width: 512px;
    max-height: 512px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Add some space between logo and text */
}

.logo {
    width: 100vw;
    height: auto;
    max-width: 400px;
}

#soon-container {
    width: 12vh;
    height: auto;
    position: absolute; /* Enables absolute positioning */
    bottom: 13vh; /* Distance from the bottom edge */
    right: 0px; /* Distance from the right edge */
    transform: rotate(-90deg);
    transform-origin: 100% 100%;
}

h1 {
    margin: 10px 0;
    font-size: 2rem;
    color: #ffffff;
}

small {
    font-size: 1rem;
    color: #ffffff4d;
}

.email {
    margin-top: auto;
    font-size: 14px;
    color: #ffffff;
    position: absolute;
    bottom: 14px;
    text-decoration: none !important;
}

.swiss-flag {
    height: 1rem;
    width: auto;
}

/* Tablet Styles (Medium Screens) */
@media (max-width: 1024px) {
    #lottie-container {
        height: 54vh;
    }

    /* h1 {
        font-size: 1.6rem;
    }

    small {
        font-size: 0.8rem;
    } */

    .email {
        top: 14px;
        bottom: auto;
    }

    #soon-container {
        bottom: 99vh; /* Distance from the bottom edge */
        transform: rotate(-90deg);
    }
}

/* Mobile Styles (Small Screens) */
@media (max-width: 768px) {
    #lottie-container {
        height: 50vh;
    }

    /* h1 {
        font-size: 1.6rem;
    }

    small {
        font-size: 0.8rem;
    } */

    .email {
        top: 14px;
        bottom: auto;
    }

    #soon-container {
        bottom: 99vh; /* Distance from the bottom edge */
        transform: rotate(-90deg);
    }
}

/* Specific Adjustments for Very Small Screens */
@media (max-width: 480px) {
    #lottie-container {
        height: 40vh;
    }

    h1 {
        font-size: 1.6rem;
    }

    small {
        font-size: 0.8rem;
    }

    .swiss-flag {
        height: 0.8rem;
    }

    .email {
        top: 14px;
        bottom: auto;
    }

    #soon-container {
        bottom: 99vh; /* Distance from the bottom edge */
        transform: rotate(-90deg);
    }
}