footer {
    width: 100%;
    background-color: #ececec;
}

.footer_container {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_links {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    font-size: clamp(.8rem, 2vw, 1.3rem);
    gap: 2rem;
}

.footer_link {
    display: flex;
    gap: .3rem;
    text-decoration: none;
    align-items: center;
    color: #0072CE;
}

.footer_link_item img {
    display: block;
    width: 25px;
    height: auto;
}

.footer_copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: clamp(.7rem, 2vw, 1rem);
    padding: 0 1rem;
}

@media screen and (max-width: 900px) {

    .footer_links {
        gap: .7rem;
    }
}
