body {
  background-color: black;
}


/* Title */
h1 {
  position: center;
  margin: auto;
  color: red;
  text-align: center;
}
   

/* Slideshow container */
.slideshow-container {
  width: 100%;
  max-width: 100%;
  max-height: 800px;
  position: center;
  margin: auto;
}
/* Slideshow image */
#slideshow {
  width: 100%;
  height: 100%;
  max-height: 800px;
  object-fit: contain; /* Makes sure the image scales proportionally inside the container */
  transition: opacity 1s ease-in-out;
}

h2 {
  width: auto;
  text-align: center;
  color: red;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: 0px;
  padding: 0px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}


.prev {
  left: 0;
}
.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: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: red;
  font-size: 24px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Quote Style */
#quote-container {
    position: relative;
    margin-top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-style: italic;
    text-align: center;
    color: red;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;

}


/* Disclaimer Style */
#disclaimer {
    position: relative;
    margin-top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-style: italic;
    text-align: center;
    color: red;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;

}

    #pauseButton {
        position: fixed;
        top: 75%;
        left: 10px; /* Adjust the distance from the left margin */
        transform: translateY(-50%); /* Centers the button vertically */
        padding: 5px;
        font-size: 16px;
        z-index: 1000; /* Ensures the button is on top of other elements */

}

 #previousButton {
        position: fixed;
        top: 80%;
        left: 10px; /* Adjust the distance from the left margin */
        transform: translateY(-50%); /* Centers the button vertically */
        padding: 5px;
        font-size: 16px;
        z-index: 1000; /* Ensures the button is on top of other elements */

}



.counter-container {
  position: fixed;
  top: 60%;
  left: 10px;
  text-align: center;
}

.counter {
  background: #333;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.digit {
  font-size: 15px;
  letter-spacing: 5px;
  padding: 5px;
  background: #222;
  color: #0f0;
  border: 3px solid #0f0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.counter-label {
  margin-top: 10px;
  font-size: 15px;
  color: #0f0;
}
	

@media only screen and (max-width: 1400px) {

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  max-height: 600px;
  position: center;
  margin: auto;
}
/* Slideshow image */
#slideshow {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain; /* Makes sure the image scales proportionally inside the container */
  transition: opacity 1s ease-in-out;

}

@media only screen and (min-width: 2050px) {

/* Slideshow container */
.slideshow-container {
  width: 100%;
  max-width: 100%;
  max-height: 1000px;
  position: center;
  margin: auto;
}
/* Slideshow image */
#slideshow {
  width: 100%;
  height: 100%;
  max-height: 1000px;
  object-fit: contain; /* Makes sure the image scales proportionally inside the container */
  transition: opacity 1s ease-in-out;
}
