body{
    background-color: white;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
div{
    width: 32%;
    margin: 20px auto;
}

img{
    width: 100%;
}

p{
    font-size: 1.5vw;
    width: 100%;
    margin: 0px 0px 10px 0px;
}
h2{
    font-size: 1.8vw;
}
#inf{
    margin: 20px 0px 0px 0px;
    color: rgb(46, 46, 46);
    width: 100%;
    text-align: justify;
}

#enlace{
    margin: 10px auto;
    color: rgb(55, 115, 247);
}

@media screen and (max-width: 756px){
    div{
        width: 47%;
    }
    div:nth-of-type(3){
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    div:last-of-type > img{
        width: 48%;
    }
    section{
        width: 48%;
        padding: 10px;
    }
    p{
        font-size: 3vw;
    }
    h2{
        font-size: 3vw;
    }
}

@media screen and (max-width: 576px){
    div{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    img{
        width: 100%;
    }
    div:last-of-type > img{
        width: 100%;
    }
    section{
        width: 100%;
    }
}