*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}
.body{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px, 1fr)) ;
    width:95%;
    margin:auto;
    grid-gap:20px;
}
.photo-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px, 1fr)) ;
    width:95%;
    margin:auto;
    grid-gap:10px;
    padding:10px;
    position:relative;
    overflow:hidden;
    box-shadow:6 0 6px rgba (0, 0, 0, .5); 
}
.photo-gallery a{
    display:block;
    position:relative;
    overflow:hidden;
}
.photo-gallery img{
    width: 100%;
    object-fit:cover;
    height:410px;
    box-shadow:6 0 6px rgba (0, 0, 0, .5); 
    transition: transform 0.5s ;
}
.imagenes a:hover img{
    filter: sepia(40%);
    transform:rotate(10deg) scale(1.3);
}
h5{
    font-size:17px;
    color:#333;
    font-weight:500;
    margin-bottom:30px;
    padding-top:4px;
  }
.photo-gallery img {
    width: 100%;
    object-fit: cover;
    height: 410px;
    transition: transform 0.5s;
}