footer {
    padding: 2em 1em 6em 1em;
    background: linear-gradient(var(--gray-gradient)) no-repeat;
    color: rgb(var(--gray));
    text-align: center;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
}
.social-links a {
    text-decoration: none;
    color: rgb(var(--gray));
}
.social-links a:hover {
    color: rgb(var(--gray-dark));
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
    font-size: 0.8em;
}

.privacy-links a {
    text-decoration: none;
    color: rgb(var(--gray));
}

.privacy-links a:hover {
    color: rgb(var(--gray-dark));
}