.footer {
    padding: 2rem 1rem;
}

.footer,
.footer .links,
.footer .social {
    background: #000;
    color: #fff;
}

.footer .links,
.footer .social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer .social {
    margin-top: 1rem;
}

.footer a,
.footer a:hover,
.footer .links p {
    color: #fff;
    font-size: .8rem;
}

.footer .social svg {
    width: 1.25rem;
    height: auto;
    fill: #fff;
}

@media only screen and (min-width: 768px) {
    .footer {
        display: flex;
        padding: 1rem;
        justify-content: space-between;
    }

    .footer .social {
        margin-top: 0;
    }

    .footer .social svg {
        width: 1.5rem;
    }

    .footer a,
    .footer a:hover,
    .footer .links p {
        font-size: 1rem;
    }
}