* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 50vw;
  max-width: 50vw;
  position: relative;
  margin: auto;
  text-align: center;
}

/* Hide the images by default */
.samples {
  display: none;
  margin-top: 10px;
}

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

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

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