body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 2% 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }
  
  .container {
    position: relative;
    width: 100%;
    height: 710px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .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;
    top: 0;
    z-index: 100;
  }
  
  .gallery-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  .gallery-button.prev {
    right: 8%;
  }
  
  .gallery-button.next {
    right: 4%;
  }
  
  .gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .gallery-image {
    width: 32vw;
    height: 70vh;
    object-fit: cover;
    opacity: 0.7;
    cursor: pointer;
    border-radius: 10px;
  }

  .fade-in {
    animation: fadeIn 1s ease-out forwards;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .gallery-image.active {
    width: 32vw;
    height: 84vh;
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .container {
      height: 100vw;
    }

    .gallery-container {
      width: 100%;
      padding: 0 20px;
    }
  
    .gallery-image {
      width: 90vw;
      height: 100vw;
      border-radius: 16px;
    }
  
    .gallery-image.active {
      width: 90vw;
      height: 100vw;
    }

    .gallery-button {
      background: rgb(0,0,0,0);
      color: #fff;
      border: solid 1px #fff;
      border-radius: 2.5;
      top: 181px;
    }

    .gallery-button:hover {
      background: rgb(0,0,0,0);
      color: #fff;
      border: solid 1px #fff;
    }

    .gallery-button.next {
      right: 26px;
    }

    .gallery-button.prev {
      left: 26px;
    }
  }
  
  