.footer {
    font-family: 'Montserrat';
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: black;
}

.footer-container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.footer-container__disclaimer p {
    color: white;
    text-align: center;
    font-size: 14px;

}

.footer-container__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;

}

.footer-container__links a {
    color: white;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-divider {
    height: 3px;
    background-color: white;
    border: none;
    width: 100%;
}


@media(min-width: 768px) {
    .footer-container__links {
        flex-direction: row;
    }
}