footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-copyright {
    white-space: nowrap;
}

@media (max-width: 600px) {
    footer {
        justify-content: center;
        gap: 10px 18px;
        text-align: center;
    }

    .footer-links {
        gap: 16px;
    }
}
