body{
    margin:0;
    height:100vh;
    display:grid;
    place-items:center;
    background-color:#131313;
  }
  
  .gallery{
    width:85vw;
    height:60vmin;
    display:flex;
    gap:5px;
  }
  
  .gallery img{
    height:100%;
    flex:1;
    object-fit:cover;
    overflow:hidden;
    cursor:pointer;
    border-radius:10px;
    transition:all 0.3s;
  }
  
  .gallery img:hover{
    flex:4;
  }