.slideshow-container {
    position: relative;
    width: 100%;
  }

  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;

  }
  
  /* Position the "next button" to the right */
  .next {
    right: -5%;
    border-radius: 3px 0 0 3px;
  }
  .prev {
    left: -5%;
    border-radius: 3px 0 0 3px;
  }
  /* .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  } */
  
  
  /* @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  } */
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }
  @media only screen and (max-width: 700px) {
    .prev{
      left: -10%;
    }
    .next{
      right: -10%;
    }
  }