*{
    margin: 0%;
    padding: 0%;
}

header{
    width: 100%;
}
 
.logo{
    width: 100px;
    height: 100px;
    
}

.cuadroinf{
    width: 300px;
    height: 300px;
    
}

.cuadroinf p{
    background-color: bisque;
}

.cuadroinf img{
    width: 200px;
    height: 200px;
    border: solid 1px;
    box-shadow: 0px 0px 10px;
    border-radius: 1em;
    padding: 5px;
    margin-top: 5px;
}


.cajaproductos img{
 width: 300px;
 min-height: 300px;
 margin-bottom: 10px;
 border-radius: 1em;
 box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
 transition: box-shadow 0.3s ease-in-out;
}

.cajamas :hover img {
    transform: scale(1.1);
    transition: transform 0.5s ;
}

.cajaproductos div{
    margin-bottom: 10px;
    width: 400px;
    height: 400px;
   }


   @media (max-width: 400px) {
    .cajaproductos img{
        width: 200px;
        min-height: 200px;
        margin-bottom: 10px;
        border-radius: 1em;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        transition: box-shadow 0.3s ease-in-out;
       }
       
       .cajaproductos :hover img {
           transform: scale(1.1);
           transition: transform 0.5s ;
       }
       
       .cajaproductos div{
           margin-bottom: 10px;
           width: 300px;
           height: 300px;
          }
  }