    .slideshow-container {
      position: relative;
      width: 90%;
      height: auto;
      margin: 2vw auto;
    }
    
    .slide {
      display: none;
      width: 100%;
      height: 100%;
      align-items: center;
    }
    .slide img {
      width: 100%;
      height: auto;
      display: block;

    }
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      transition: 0.3s ease;
      border-radius: 0 3px 3px 0;
      background-color: rgba(0,0,0,0.5);
      user-select: none;
    }
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
    .prev:hover, .next:hover {
      background-color: rgba(0,0,0,0.8);
    }
    .dots {
      text-align: center;
      padding: 10px 0;
    }
    .dot {
      cursor: pointer;
      height: 1vw;
      width: 1vw;
      margin: 0 4px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s;
    }
    .dot.active {
      background-color: #717171;
    }