.footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding: 2rem;
}

.footer__socials-container,
.footer__links {
    margin-inline: auto;
    text-align: center;
}

.footer__socials {
    height: 1.2rem;
    width: auto;
    margin: 0 0.15rem;
    display: inline;
    transition: all 0.4s;
}

.footer__links {
    margin-bottom: -0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--clr-textgray);
    text-transform: uppercase;
    transition: all 0.4s;
}

.footer__link {
    transition: all 0.4s;
}

.footer__socials:hover,
.footer__link:hover{
    transform: scale(1.15);
    font-size: 0.85rem;
}

