body {
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0px;
  }
  
  .gallery-button {
    position: absolute;
    display: none;
    background: #fff;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #6f7271;
    font-size: 24px;
    border: 1px solid #6f7271;
    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: 13%;
  }
  
  .gallery-button.next {
    right: 8%;
  }
  
  .gallery {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery .background{
    position: absolute;
    background: #3BBFAD;
    top: 45vw;
    left: 14vw;
    right: 61vw;
    border-radius: 100px;
    opacity: 0;
  }

  .gallery .background #text {
    font-family: "Gotham", Sans-serif;
    font-size: 24px;
    text-align: center;
    color: #fff;
    line-height: 0px;
  }
  
  .gallery-image {
    width: 22vw;
    height: 22vw;
    object-fit: cover;
    opacity: 0;
    cursor: pointer;
    border-radius: 10px;
    margin: 8px 8px 8px 0;
  }

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

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .gallery-image.principal {
    width: 74vw;
    height: 98vw;
    opacity: 0;
  }
  
  