.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 1em;
}
.footer-grid a {
    font-weight: 300;
    color: #C3C3C3;
}
.footer-grid a:hover {
    text-decoration: none;
    color: #e0e0e0;
}
@media screen and (max-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}