section.language
{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 10002;
}

section.language img
{
    width: 20px;
    border-radius: 3px;
}

section.language > div.lang_bar
{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

section.language > div.lang_bar > a
{
    font-family: var(--mono);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media only screen and (orientation: portrait)
{
    section.language
    {
        right: 1rem;
        top: 1rem;
    }
}

