@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;900');

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #181818;
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    color: #f9f9f9;
    margin: 0;
}

#language-selector {
    opacity: 0.5;
    cursor: pointer;
}

#header {
    box-sizing: border-box;
    display: flex;
    padding: 1vh 3vw;
    justify-content: space-between;
    font-size: 1.5em;
    font-weight: 300;
    position: fixed;
    top: 0;
    width: 100vw;
    background-color: #181818;
    z-index: 1000;
}

#header >* a,
#language-selector {
    display: inline-flex;
    align-items: center;
    color: #f9f9f9;
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.3s ease;
    gap: 14px;
}

#header a:hover,
#language-selector:hover,
#header a:active,
#language-selector:active {
    opacity: 1;
    text-decoration: none;
}

.header-left {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

.header-left img {
    height: 42px;;
}

.header-right {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 9px;
}

.bullet {
    width: 6px;
    height: 6px;
    background-color: #f2f2f2;
    opacity: 0.5;
    margin: 0 5px;
}

.logo {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .header-left .header-text {
        display: none;
    }
    #header {
        font-size: 1.25em;
    }

    .header-left img {
        height: 36px;
    }

    .bullet {
        width: 4px;
        height: 4px;
    }
}