footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.github-linkedin-container {
    display: flex;
    gap: 1.5rem;
}
.footer-social:hover > .footer-social-path {
    transition: fill 0.5s;
}
.footer-social:hover > .footer-social-path {
    cursor: pointer;
    fill: black;
}

.mail-ref {
    color: #9F9F9F;
    font-size: 1.25rem;
    transition: color 0.5s;
}

.mail-ref:hover {
    color: black;
}


.copyright {
    color: #9F9F9F;
}


@media only screen and (max-width: 1280px) {
    .copyright {
        font-size: 0.9rem;
    }
}




@media only screen and (max-width: 1000px) {
    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    .github-linkedin-container {
        order: 1;
    }
    .copyright {
        display: flex;
        order: 3;
    }
    .email {
        order: 2;
        display: flex;
    }
}

