/* Footer */

footer {
    font-size: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

footer > .right-container {
    display: flex;
    gap: 1rem;
}

footer > .left-container {
    display: flex;
    gap: 1rem;
}

footer > .right-container > a {
    color: black;
}

footer > .left-container > a {
    color: black;
}

@container (min-width: 40rem) {
    footer {
        flex-direction: row;
        justify-content: space-between;
    }
}
