/* footer */
footer {
    display: flex;
    justify-content: space-around;
    background-color: var(--footer-bg-color);
}

footer a {
    color: white;
    font-size: 16px;
}

footer h3 {
    margin-bottom: 0px;
}
footer ul {
    list-style-type: none;
    margin-top: 0px;
}
@media (max-width: 767px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
