
body {
  overflow: hidden; /* Hide scrollbars */
}

* {box-sizing:border-box}

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

/* Hide the images by default */
.mySlides {
    display: none;
    width: 100%;
    height: auto;
/*    max-height: 930px; */
}

/* Next & previous buttons */
.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.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #000000;
  background-color: #ffffff;
  font-size: 30px;
  padding: 8px 12px;
/*  position: absolute; */
    position: fixed;
  bottom: 8px;
  left: 15px;
  text-align: center;
  font-family: 'Circe', Helvetica, Arial, sans-serif;
}

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

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

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