.gallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.gallery .column {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.gallery .column img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 2vw;
  box-shadow: 0px 3px 35px var(--shadow-color);
}

@media only screen and (max-width: 990px) {
  .gallery {
    flex-direction: column;
  }

  .gallery .column {
    width: 100%;
  }
}