@import url(./global.css);

footer{
    height: fit-content;
    max-width: 100%;
    background-color: var(--global-color-oscuro);
    color: var(--global-fuente-clara);
    display: grid;
    grid-template-columns: repeat(3, 33%);
}

footer .column{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px 25px;
}

footer .column .contactos{
    display: flex;
    margin: 0 auto;
    width: 60%;
    justify-content: space-evenly;
}

footer .column .contactos a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 39px;
    color: var(--global-color-claro);
    text-decoration: none;
    font-size: x-large;
    transition: .2s;
    border-radius: 30px;
}

footer .column .contactos i{
    transition: .2s;
}

footer .column .contactos a:hover{
    background-color: var(--global-color-resaltado);
}

footer h1{
    font-size: 24px;   
}

footer p{
    font-size: medium;
}

@media (max-width: 720px) {
    footer{
        display: flex;
        flex-direction: column;
        padding: 5px 15px;
    }

    footer .column .contactos{
        width: 90%;
    }
}