.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    padding: 0 clamp(0.5rem, 2vw, 1.5rem) clamp(0.5rem, 1.5vw, 3rem);
    line-height: 2.5;
    background-color: lightpink;
}
.foot-logo-container {
    width: clamp(4rem, 12vw, 20rem);
    display: flex;
    align-items: center;
}
.logo {
    width: 100%;
    border-radius: 10rem;
}
.foot-container {
    font-size: clamp(0.6rem, 1.7vw, 3.5rem);
}
.foot-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 850px) {
    .foot-logo-container {
        display: none;
    }
}
 