body {
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow-y: hidden;
  }
  
  .gallery-button {
    position: absolute;
    display: flex;
    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;
    right: 3%;
  }
  
  .gallery-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  .gallery-button.prev {
    top: 46%;
  }
  
  .gallery-button.next {
    top: 54%;
  }
  
  .gallery {
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

  .gallery .background #text {
    font-family: 'Cammron', 'Times New Roman', Times, serif;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    line-height: 0px;
  }
  
  .gallery-image {
    width: 19vw;
    height: 19vw;
    object-fit: cover;
    opacity: 0;
    cursor: pointer;
    border-radius: 10px;
    margin: 12px;
  }

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

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .gallery-image.principal {
    width: 49vw;
    height: 49vw;
    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;
    }
  }
  
  