.footer {
    margin: 10rem auto 5rem auto;
}

@media (min-width: 768px) { 
    .footer {
        display:flex;
        width: 80%;
        margin: 15rem auto 6rem auto;
    }
}

.footer p {
    text-align: center;
}

.footer-social-media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* justify-items: center; */
    align-items: center;
    width:60%;
    margin: 4rem auto;
    gap:3rem;
    text-align: center;
}

.footer-social-media a {
    display: block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size:2.5rem;
    background-color: var(--white);
    color: var(--black);
    border-radius:50%;
}

@media (min-width: 768px) {
    .footer p {
        max-width: 50%;
    }
    .footer-social-media {
        max-width: 50%;
        display:flex;
        justify-content: flex-end;
        /* margin: 2rem auto; */
        margin:0 0 0 auto;
        align-items: center;
    } 
    .footer-social-media a {
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        font-size:2rem;
    }
    .footer-social-media a:hover {
        color:var(--red);
    }
}

@media (min-width: 1024px) { 
    /* .footer-social-media {
        margin:0 0 0 auto;
        align-items: center;
    }  */
    .footer-social-media a {
        width: 4rem;
        height: 4rem;
        line-height: 4rem;
        font-size:2.5rem;
    }
}
