/* * {box-sizing:border-box} */

body {
  background-color: black;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Ubuntu','Trebuchet MS';
}

button {
  color: black;
  margin-top:1em;
}

/* Slideshow container */
.slideshow-container {
  margin: auto;
  text-align: center;
  display: block;
}

.slideshow-img {
  max-width: 80vw;
  max-height: 85vh;
  /* min-height: 70vh; */
  /* object-fit: contain; */
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-size: 45px;
  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;
}
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: rgb(0, 153, 255);
  opacity: .8;
  font-weight: bold;
  transform: scale(1.4);
}

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

/* Number text (1/3 etc) */
.slide-upper {
  font-size: 1em;
  position: absolute;
  top: 5px;
  display: inline-block;
  width: 99%;
  text-align: center;
}
.numbertext {
  display: inline-block;
  color: #f2f2f2;
}

.download-img {
  display: inline-block;
  color: white;
  margin-left: 3em;
  transition: 0.6s ease;
}

.download-img:hover {
  /* background-color: rgb(255,255,255,.5); */
  color: rgb(0, 153, 255);
  font-weight: bold;
  transform: scale(1.4);
}

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

.active, .dot:hover {
  background-color: #717171;
}

#progress-bar {
  display: inline-block;
  width: 30ch;
  height: .2em;
  background-color: white;
  margin-left: 3em;
  border-radius: 1px;
}

#bar {
  background-color: rgb(0, 153, 255);
  width: 1%;
  height: 100%;
}

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

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

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