footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 128px;
    height: 400px;
    width: 100%;
    background-image: url(../Images/marmol.webp);
    background-size: cover;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.3);
}

.footerMenu{
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 16px;
    a{
        position: relative;
        display: flex;
        text-decoration: none;
        color: #fff;
        width: fit-content;
    }
    a:after{
        content: "";
        position: absolute;
        bottom: -2px;
        height: 1px;
        background-color: #fff;
        width: 0%;
        transition: 0.2s;
    }
    a:hover:after{
        width: 100%;
    }
}

@media(max-width:808px){
    footer{
        padding: 32px 0;
        height: auto;
        flex-direction: column;
        gap: 8px;
        img{
            height: auto;
            width: 90%;
        }
    }

    .footerMenu{
        width: 80%;
    }
}