* {box-sizing:border-box}

body {
	
 background: black;	
}


/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  
}


.mySlides img {
  max-height: 100vh;
  width: 100%;
  object-fit: contain;
  display: block;
}


Copy.prev, .next {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Optional: Add a subtle fade effect when buttons appear/disappear */
.prev:hover, .next:hover {
  opacity: 1 !important;
}


/* Fullscreen mode */
.slideshow-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none;
  z-index: 9999;
  background: black;
}

.slideshow-container.fullscreen .mySlides img {
  height: 100vh;
  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: #888;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.5);
  border: none;
  z-index: 10000;
}

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

/* Fullscreen button */
.fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: #888;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  transition: background-color 0.3s ease;
  z-index: 10000;
}

.fullscreen-btn:hover {
  background: rgba(0,0,0,0.8);
}

.fullscreen-icon {
  display: inline-block;
  font-size: 25px;
}

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

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  z-index: 10000;
}

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

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

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

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

/* Hide dots in fullscreen mode */
.slideshow-container.fullscreen ~ div {
  display: none;
}