body {
  display: flex;
  justify-content: center;
  height: 100vh;
  overflow-y: hidden;
  margin: 0px;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery .background {
  position: absolute;
  height: 40px;
  background: #E8E2D8;
  top: 45vw;
  left: 14vw;
  right: 61vw;
  border-radius: 100px;
  opacity: 0;
  padding-bottom: 9px;
  line-height: 3px;
}

.gallery .background #text {
  font-family: "Adrianna";
  font-size: 24px;
  text-align: center;
  color: #000;
}

.gallery .disclaimer a{
  display: flex;
  position: absolute;
  color: #fff;
  text-decoration: none;
  top: 48vw;
  left: 24px;
}

.gallery .disclaimer img {
  width: 10px;
}

.gallery .disclaimer p {
  font-family: "Adrianna";
  font-size: 12px;
}

.gallery-image {
  width: 21vw;
  height: 21vw;
  object-fit: cover;
  opacity: 0;
  cursor: pointer;
  border-radius: 10px;
  margin: 12px;
}

.fade-in {
  animation: fadeIn 300ms ease-out forwards;
}

.gallery-button {
  position: absolute;
  display: flex;
  background: #fff;
  width: 38px;
  height: 36px;
  justify-content: center;
  align-items: center;
  color: #545454;
  font-size: 20px;
  border: 1px solid #545454;
  border-radius: 2.5px;
  padding: 10px;
  cursor: pointer;
  top: 51vw;
}

.gallery-button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.gallery-button.prev {
  right: 6%;
}

.gallery-button.next {
  right: 2%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.gallery-image.principal {
  width: 50vw;
  height: 50vw;
  opacity: 0;
}

@media (max-width: 768px) {
  .gallery-container {
    width: 100%;
    padding: 0 20px;
  }

  .gallery-image {
    width: 150px;
    height: 150px;
  }

  .gallery-image.principal {
    width: 200px;
    height: 200px;
  }
}