/**
 * Style of footer section
 */

footer {
    width: 100%;
}
.div_site_credits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: black;
    padding: 1rem;
}
.site_credits,
.legal_nav_link {
    font: var(--body-font);
    font-size: .9rem;
    text-align: center;
}
.site_credits {
    color: rgba(255, 255, 255, .5);
}
.site_credits span {
    color: rgba(255, 255, 255, .3);
}
.footer_legals_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: .5rem;
}
.legal_nav_link {
    color: rgba(255, 255, 255, .7);
    -webkit-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s;
}
.legal_nav_link:hover {
    color: rgba(255, 255, 255, .85);
}
@media screen and (max-width: 700px) {
    .div_site_credits {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        gap: .5rem;
    }
    .site_credits,
    .footer_legals_container,
    .footer_legals_li  {
        width: 100%;
    }
    .footer_legals_ul {
        gap: 0;
    }
}