
nav a, nav button{
    pointer-events: all;
}
nav{
    overflow: auto;
    background: var(--background-color);
}
.menu-link{
    font-weight: 600;
    background: var(--fill-1);
    color: var(--light-grey);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 10px;
    border-radius:100px;
}
.menu-link[data-ext]{
    background: var(--pink-decorated-background);
    color: white;
}
.menu-close-button{
    position:absolute;
    color: var(--font-color);
    font-size: 35px;
    inset: 20px 20px auto auto;
}
.lang-switcher{
    height: 25px;
    width: 200px;
    display:flex;
    justify-content:flex-start;
    align-items: center;
    font-weight: 600;
    border-radius:100px;
    background:var(--fill-1);
    color:var(--light-grey);
}
.lang-switcher > button{
    width: 50%;
    height:100%;
    border-radius: inherit;
}

html[lang="en"] .lang-switcher-lang[data-en]{
    background: var(--background-color-inverse);
    color: var(--font-color-inverse);
    pointer-events: none;
}

html[lang="fr"] .lang-switcher-lang[data-fr]{
    background: var(--background-color-inverse);
    color: var(--font-color-inverse);
    pointer-events: none;
}

@media only screen and (min-width: 600px){
    .menu-link{
        height: 25px;
    }

    .lang-switcher{
        height: 25px;
    }
}