.footer {
    background: #3D3F42;
    padding: 5vh;
    font-family:'Inter';
    font-weight: 500;
}

.footer__wrapper {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer__col {
    max-width: 50%;
}

.footer__col > p {
    color: var(--secondary);
}

.footer__link {
    color: var(--white);
}

.footer__link:hover {
    cursor: pointer;
    text-decoration: none;
}

@media screen and (max-width: 850px) {
    .footer__wrapper {
        flex-direction: column;
    }

    .footer__col {
        max-width:90%;
    }
}
