@charset "utf-8";
footer {
    background-color: var(--background-header);
}

footer nav {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

footer nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

footer nav ul li a {
    color: black;
    text-decoration: none;
    font-size: var(--fs-450);
    line-height: 2.5;
}

footer nav ul li a:hover, 
footer nav ul li a:focus {
    color: var(--grey-hover);
}