#gallery {
  position: relative;
  min-height: 100vh;
  min-width: 100vw;
  background: var(--clr-blu-1);
}
#gallery h2 {
  font-family: "Dancing Script", "Open Sans", serif;
  position: absolute;
  top: 3rem;
  font-size: 7rem;
  color: var(--clr-ylw-2);
  z-index: 90;
}

#gallery .down-arrow {
  position: absolute;
  top: 77%;
  height: 125px;
  flex-direction: column;
}
#gallery .down-arrow p {
  text-align: center;
  position: relative;
  top: -10%;
}

.GS__left span, .GS__right span {
  border: solid var(--clr-ylw-1);
  border-width: 6px 6px 0 0;
}

@media (max-height: 600px) {
  #gallery {
    min-height: 150vh;
  }
}