html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Open Sans Condensed", Arial, sans-serif;
    background: linear-gradient(
        to bottom,
        #0a2342 0%,
        #12365d 100%
    );
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.language-switch {
    position: absolute;
    top: 25px;
    right: 30px;
    display: flex;
    gap: 14px;
    z-index: 1000;
}

.language-link {
    display: inline-block;
}

.flag {
    font-size: 24px;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.flag:hover {
    opacity: 1;
    transform: scale(1.12);
}

.container {
    width: 100%;
    text-align: center;
    margin-top: 5vh;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.25rem);
    font-weight: 300;
    letter-spacing: 3px;
}

.coming-soon {
    margin-top: 70px;
    font-size: 28px;
    letter-spacing: 6px;
    font-weight: 300;
    opacity: 0.95;
}

.progress-container {
    width: 400px;
    max-width: 80%;
    margin: 55px auto 0;
}

.progress-scale {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.progress-bar {
    height: 20px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.15);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.25);
}

.progress {
    width: 26%;
    height: 100%;
    background: linear-gradient(
        to right,
        #4da3ff,
        #8ec5ff
    );
}

@media (max-width: 700px) {
    .language-switch {
        top: 18px;
        right: 20px;
    }

    .flag {
        font-size: 22px;
    }

    h1 {
        font-size: 56px;
        letter-spacing: 2px;
    }

    .coming-soon {
        font-size: 20px;
        letter-spacing: 4px;
        margin-top: 50px;
    }

    .progress-container {
        width: 320px;
    }
}
@media (max-height: 500px) {

    .container {
        margin-top: 2vh;
    }

    h1 {
        font-size: 60px;
    }

    .coming-soon {
        margin-top: 30px;
        font-size: 20px;
    }

    .progress-container {
        margin-top: 30px;
    }

    .language-switch {
        top: 15px;
        right: 15px;
    }

    .language-link img {
        width: 20px;
    }
}
