.gallery-person-project {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  flex-direction: row;
  margin: clamp(85px, 5vw, 100px) clamp(20px, 5vw, 40px);
}
.gallery-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (min-width: 500px) {
  .gallery-person {
    flex-direction: row;
  }
}
.gallery-work {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
