/* Slideshow container */
.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0px;
  }

  .mySlides {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    background-color: #717171;
    background-size: cover;
    background-position:center;
  }

  img {
    vertical-align: middle;
  }

  /* Caption text */
  .text {
    color: rgb(233, 233, 21);
    position: absolute;
    top: 0px;
    width: 100%;
    text-align: center;
    font-size: 4vw;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 2.00px;
    line-height: 50px;
    font-weight: bold;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

  /* The dots/bullets/indicators */
  .dots{
      position: absolute;
      bottom: 0px;
  }
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active {
    background-color: #717171;
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
