#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 450px;
  gap: 20px;
  
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
