footer {
    display: flex;
    flex-direction: row;
    background-color: var(--app-footer-bg);
    flex-wrap: wrap;
    bottom: 0;
    width: 100%;
    z-index: 1000;

}

footer a {
    color: var(--app-footer-link);
}

footer a:hover {
    color: var(--app-footer-link2);
}

@media screen and (max-width: 768px) {
    footer {
        flex-wrap: wrap;
    }
}