footer {
    background: var(--color-1);
    color: var(--color-2);
    padding: 20px;
    min-height: 200px;
    border-top: 1px solid var(--color-2);
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer>* {
    display: flex;
    flex-direction: column;
}

footer h2 {
    text-align: center;
}

footer p {
    margin: 0 0 10px;
}

footer>:not(:nth-child(1)) {
    margin-left: 20px;
}

footer a {
    padding: 10px;
    margin: 5px 0px 5px 5px;
    text-decoration: none;
    color: var(--color-2);
    border-radius: 10px;
    transition: 0.3s;
    background: var(--color-1);
    border: 1px solid var(--color-1-selected);
    text-align: center;
}

footer a:hover {
    background: var(--color-1-selected);
}

footer a.social {
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer a.social svg {
    margin-right: 5px;
}

@media (max-width:765px) {
    footer {
        flex-direction: column;
        text-align: center;
    }
}
