footer {
    padding-block: 15px;
    padding-inline: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    font-family: 'Montserrat';
    color: #fff;
}

.footer-bottom-text {
    font-size: 14px;
    text-align: center;
}

.footer-legal-links-wrapper {
    display: flex;
    gap: 5px;
}

.footer-legal-link {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.footer-legal-link:not(:last-of-type)::after {
    content: "|";
    margin-left: 5px;
}


@media only screen and (min-width: 1600px) {
    .footer-legal-link {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1600px) {
    .footer-legal-link {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1200px) {
    footer {
        padding-inline: 50px;
    }
}

@media only screen and (max-width: 1100px) {
    footer {
        flex-direction: column;
        gap: 20px;
        padding-block: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .footer-legal-links-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal-link:not(:last-of-type)::after {
        content: "";
        margin-left: 0;
    }

    .footer-legal-link {
        text-align: center;
    }
}

