.mySlides {
  display: none;
}
/*img {vertical-align: middle;}*/

/* Slideshow container */
.slideshow-container {
  width: 100%;
  max-width: 800px;
  position: relative;
  margin: auto;
  padding-top: 20px;
  img {
    max-width: 100%;
    max-height: 100vh;
  }
}

/* Caption text */
.text {
  color: white;
  font-size: 16px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 10px 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: 2s;
}

@keyframes fade {
  from {opacity: .1}
  to {opacity: 1}
}
