<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#slides {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery {
  width: 100%;
  border-radius: 5px;
  margin: auto;
  box-shadow: 0;
  transition: box-shadow 0.3s;
}

.gallery:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.slide {
  max-width: 80%;
  max-height: 80%;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1000px) {
  .slide {
    max-width: 800px;
  }
}

.cross {
  color: white;
  position: absolute;
  right: 25px;
  top: 50px;
  font-size: 50px;
  transition: 0.5s ease;
}

.prev, .next {
  height: 20%;
  color: white;
  padding: 20px;
  font-size: 30px;
  transition: 0.5s ease;
  float: left;
  position: relative;
  top: 50%;
}

/* Position the "next button" to the right */
.next {
  float: right;
}

#indicator {
  color: white;
  font-size: 20px;
  position: absolute;
  left: 25px;
  top: 70px;
}
</pre></body></html>