:root {
    --pad: 0 15px 0 15px;
}

.foot {
    width: var(--wide);
    height: var(--h);
    display: grid;
    grid-template-columns: 1fr 10vh;
    grid-template-rows: var(--h);
    background: var(--back);
}

h3 {
    font-size: 1.5vh;
    margin: 0;
    line-height: var(--h);
    padding: var(--pad);
    color: white;
    cursor: pointer;
}

.legal {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
}

.language {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: var(--h);
}

.language h3 {
    padding: 0;
    width: fit-content;
    cursor: pointer;
}

.foot button {
    font-size: 1.5vh;
    margin: 0;
    line-height: var(--h);
    padding: var(--pad);
    color: white;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--back);
}

.foot button:focus {
    text-decoration: underline;
    color: var(--green) !important;
}

.highlight_button:focus {
    outline: 5px solid turquoise;
}

.reach:focus {
    outline: 5px solid white;
}

@media only screen and (max-width: 400px) {
    .foot {
        width: 96vw;
    }
}