        * {
            margin: 0;
            padding: 0;
        }
        .imgbox {
            display: grid;
            height: 96%;
        }
        .center-fit {     
			display:block;
			max-width: 96%;
            max-height: 100vh;
			margin-left: auto;
			margin-right: auto;
			z-index: 99;
        }        
		.dot-fit {     
			text-align: center;
			margin-left: auto;
			margin-right: auto;
        }

}
		
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.slides {display: none}
img {vertical-align: middle;}

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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  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);
}

.avoid-clicks{
	pointer-events: none;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 25px;
  padding: 2px 5px;
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
  background-color: #121811;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 16px;
  padding: 8px 12px;
  position: absolute;
  top: 1%;
  left: 49%;
  background-color: #121811;
}
/* The dots/bullets/indicators */
.nav-dots {
	width: 100%;
	bottom: 25px;
	height: 11px;
	display: block;
	position: absolute;
	text-align: center;
}
.dot {
  cursor: pointer;
  height: 30px;
  width: 30px;
  margin: 0 20px;
  background-color: #00aadc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.back {
  color: #f2f2f2;
  font-size: 25px;
  padding: 2px 5px;
  position: absolute;
  bottom: 50px;
  width: 100%;
  text-align: center;
  background-color: #525851;
}
.active, .dot:hover {
  background-color: #dcaa00;
}

/* 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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


}