.info{
    background-image: url("https://img.freepik.com/foto-gratis/pincel-pintura-rosa-textura-fondo_53876-102659.jpg?t=st=1730078321~exp=1730081921~hmac=620d574616bd638bc77264cb190b1ab023b4a072040c97b7a12acba602db8b32&w=996");
    background-size: 100vw, 100vh;
    background-repeat: no-repeat;
}
@media(max-width: 768px){
    .info{
        background-image: url("../images/fondo.jpg");
    }
}
.gallery{
    background-color:rgb(255, 199, 181);
}
.zoomP{
    /*Aumentamos la anchura y altura durante 2 segundos*/
    transition: width 1.1s, height 1.1s, transform 1.1s;
    -moz-transition: width 1.1s, height 1.1s, -moz-transform 1.1s;
    -webkit-transition: width 1.1s, height 1.1s, -webkit-transform 1.1s;
    -o-transition:  width 1.1s, height 1.1s, -o-transform 1.1s;

}
.zoomP:hover{
    /*transformamos el elemento al pasar el mouse por encima al doble de su tamaño con scale(2),*/
    transform: scale(1.05); /*(150% zoom- note: if the zoom is too large, it will go autoside of the viewport)*/
    -webkit-transform: scale(1.05);transform: scale(1.05)
}
.map{
    background-color: rgb(139, 218, 210);
}
.contactos{
    background-image: url("https://img.freepik.com/foto-gratis/mujer-morena-arreglandose-pelo_23-2148108782.jpg?t=st=1730141141~exp=1730144741~hmac=ec97e54578c0ac7fab3892f30daecf68adce0a11a5d94fada03d8b1ff7561aee&w=996");
    background-size: 200vw, 200vh;
    background-repeat: no-repeat;
}
.footer{
    background-color: rgb(0, 0, 0);
    color: pink;
}
