.section {
  display: flex;
  justify-content: center;
  margin: 4% 0;
}
.row {
  display: flex;
  flex-wrap: wrap;
  width: 80vw;
  margin: 10px;
  padding: 4px 0;
  justify-content: space-evenly;
}
.foto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  width: 25vw;
  min-width: 300px;
  border: 3px solid black;
  background-color: rgb(245, 235, 220);
  box-shadow: 15px -15px 23px 4px black;
}
.foto:hover {
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(255, 255, 255);
  }
.image {
  width: 23vw;
  min-width: 276px;
  margin: 0;
  transition: 0.7s easy-in-out;
  position: relative;
  z-index: 1;
}
.description {
  font-size: 1.5em;
}

@media (max-width: 750px) {
  .description {
    font-size: 1.2em;
  }
}
