* {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    caret-color: transparent;
    scrollbar-color: auto transparent;
}

html, body {
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%) no-repeat center center fixed;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    width: calc(100vw - 17px);
    overflow-x: hidden;
}

header { 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    vertical-align: top;
    margin-bottom: 40px;
    padding-right: 20px;
    background-color: #367ff5;
    width: 100vw;
}

.HeaderLogo {
    display: flex; 
    position: relative;
    align-items: center;
    color: black;
    text-decoration: none;
    padding-left: 13px;
    padding-right: 19px;
    transition: background-color 0.3s;
}

.HeaderLogo img {
    aspect-ratio: 16/9;
    max-width: 100%;
    padding-right: 15px;
    height: auto;
}

.HeaderLogo:hover {
    background-color: rgba(70, 70, 70, 0.2);
    cursor: pointer;
}

.NavigationLinks {
    display: flex;
    justify-content: flex-start;
    margin-right: 10px;
}

.NavigationLinks a {
    color: black;
    font-size: 35px;
    font-weight: 300;
    margin-right: 45px;
    transition: transform 0.2s, color 0.2s;
}

.NavigationLinks a:hover {
    transform: translateY(-2px);
    color: #0c3d4f;
}

.LangPillToggle {
    display: flex;
    border-radius: 999px;
    overflow: hidden;
    border: 1.5px solid #72a2ee;
    background: #9cc2ff;
    cursor: pointer;
    margin-right: 45px;
    box-shadow: 0 1px 4px rgba(44,77,129,0.07);
    user-select: none;
}

.LangHalf {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #2c4d81;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    height: 100%;
}

.LangHalf.active {
    background: #175dce;
    color: #ffffff;
}

.LangPillToggle:hover > .LangHalf:not(.active) {
    background: #65a0ff;
}

.LangHalf img {
    margin-right: 2px;
    border-radius: 2px;
    box-shadow: 0 0 2px #0001;
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

img {
    pointer-events: none;
}

.unload {
    visibility: visible;
    opacity: 1;
}

footer {
    position: absolute; 
    bottom: 12px; 
    left: 15px; 
    color: white;
}

@keyframes fade-out {
    to {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes fade-in {
    from {
        visibility: hidden;
        opacity: 0;
    }
}


@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(-40vw);
    }

    to {
        opacity: 1;
        transform: translateX(0vw);
    }
}