.gallery {
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;}
  
.gallery img {
  width: 380px;
  height: 350px;
  object-fit: cover;
  border: 2px solid gold;
  background: B8631D;
  margin: 2px;}
  
.gallery img:hover {
  object-fit: contain;}