 
 .slideshow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0097DA;
    z-index: 10;
  }

  .slideshow-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 80vh;
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }

  .slider-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    background-position: center center;
    background-size: cover;
    margin: 0;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100;
  }
  
.slider-container > img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
.sweet-transition {
    animation: opacityOn 0.2s normal forwards;
  }
  
  @keyframes opacityOn {
  0% {
      opacity: 0;
  }
  25% {
      opacity: 0.25;
  }
  50% {
      opacity: 0.5;
  }
  75% {
      opacity: 0.75;
  }
  100% {
      opacity: 1;
  }
  }
  
  .arrow {
    position: absolute;
    background-color: transparent;
    color: black;
    font-size: 100%;
    top: 50%;
    cursor: pointer;
    z-index: -1;
    border: 0px;
  }

  @media screen and (max-width: 1500px) {
    .arrow {
      font-size: 50%;
      padding: 0.2rem 0.4rem;
    }
  }

  .arrow > p {
    margin: 0;
    font-size: 120%;
    font-weight: bold;
    padding: 0.2rem;
  }
  
  .left-arrow {
    left: 2px;
    transform: translateX(-100%) translateY(-50%);
  }
  
  .right-arrow {
    right: 2px;
    transform: translateX(100%) translateY(-50%);
  }