.footer {
    background-color: rgb(0, 0, 0, 0.7);
    padding: 20px 10%;
    color: white;
}

.footer_logo {
    width: 150px;
    padding: 10px;
}

.footer a {
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.footer_active {
    color: wheat !important;
}

.footer a:hover {
    transition: color 0.3s;
    color: wheat;
}

.footer_legal {
    text-align: center;
}

.footer_contact {
    margin-top: 30px;
}

.footer_img {
    width: 40px;
    margin: 10px;
}

@media (max-width: 900px) {
    .footer {
        padding: 10px 0;
        flex-direction: column;
    }

    .footer_logo {
        width: 100px;
    }
}