.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-row {
  display: flex;
  flex-direction: row;
  margin: 2vw 0;
}

.photograph {
  position: relative;
  margin: 0 2vw;
  /* border-radius: 3px; */
  width: 20vw;
  height: 15vw;
  background-color: #fff;
  overflow: hidden;
}

/* .photograph::before {
  content: "";
  position: absolute;
  border-radius: 3px;
  width: 20vw;
  height: 15vw;
  background-color: #000;
  opacity: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}

.photograph:hover::before {
  content: "";
  position: absolute;
  border-radius: 3px;
  width: 20vw;
  height: 15vw;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
} */

.photograph:hover img {
  z-index: 2;
  width: auto;
  height: 15vw;
  object-fit: contain;
  transform: scale(1.3);
}

.photograph img {
  width: auto;
  height: 15vw;
  object-fit: contain;
  transition: all 0.5s;
  cursor: pointer;
}
