header{
    background-color: black;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;


    & *{
        &::selection{
            color: black;
            background-color: white;
        }
    }
}

.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    margin-left: 150px;

    transition: .25s ease;
    filter: brightness(1);
}

.logo:hover{
    filter: brightness(0.5);
}

.logo-img{
    width: 16px;
    height: 22px;
    margin-right: 10px;
}

.logo-txt {
    color: white;
    font-size: 3vh;
}


nav{
    margin-right: 150px;
    display: flex;
    align-items: center;
}

.nav-list{
    display: flex;
    position: relative;
    list-style-type: none;
}

.nav-list a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-element{
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    padding: 0 10px;
    position: relative;
}

.nav-element::after{
    background: white;
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: .25s ease;
    width: 100%;
    border-radius: 2px;
}
.nav-element:hover::after{
    transform: scaleX(1);
}

.nav-list .nav-element-short{
    display: none;
}


.languages{
    color: white;
    display: flex;

    margin-left: 40px;
}

.language{
    padding: 0 10px;
    color: white;
    text-decoration: none;
    position: relative;
    
    background: none;
    border: none;

    font-size: 18px;
    
    cursor: pointer;
}

.language::after{
    background: white;
    width: 100%;
    content: "";

    height: 2px;
    border-radius: 2px;

    left: 0;
    bottom: -8px;
    position: absolute;

    transform: scaleX(0);
    transition: .25s ease;
}
.language:hover::after{
    transform: scaleX(1);
}

.language:last-child{
    border-left: solid white 2px;
}

.nav-current{
    font-weight: 800;
}