body {
  overflow-y: auto;
}

.gallery {
  border-radius: 0;
  border-bottom: 3px solid white;
  cursor: default;
}

.gallery-container {
  position: relative;
  margin-left: 20%;
  margin-top: 10vh;
  width: 60%;
  height: 75vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.gallery-img {
  width: 225px;
  height: 225px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.gallery-big {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(32, 32, 32, 0.7);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: 0.2s all ease-in-out;
}

.gallery-big-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80vh;
  width: 80%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.gallery-big-lore {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  text-align: center;
  width: 60%;
}

.gallery-big-close {
  fill: white;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 2%;
  right: 2%;
  cursor: pointer;
}

.gallery-img .img4 {
  transform: rotate(90deg);
}

@media only screen and (max-width: 700px) {
  .gallery-container {
    width: 90%;
    height: 90%;
    margin-left: 5%;
    margin-top: 15vh;
  }

  .gallery-img {
    width: 120px;
    height: 120px;
    margin: 10px;
  }

  .gallery-big-img {
    top: 45%;
  }

  .gallery-big-lore {
    bottom: 70px;
    width: 90%;
    font-size: 1.2rem;
  }

  .gallery {
    border-bottom: 2px solid #202020;
  }
}
