.footer {
    margin-top: 2rem;
    padding: 0.5rem 1rem;

    background: var(--color-dark);
    color: var(--color-surface);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer {
        margin-top: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.5rem;

        text-align: center;
    }
}