footer {
    align-items: center;
    background-color: var(--secondary-accent-color);
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    position: relative;
    scroll-snap-align: end;
    z-index: var(--footer-z-index);
}

footer * {
    --text-color: black;
}

footer > .main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    width: 100%;
}

#language-selector {
    background-color: var(--secondary-accent-color);
    margin-inline: 1rem;
    width: fit-content;
}