<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div#carousel2{
  height: 500px;
  display: flex;
  position: relative;
    z-index: 100;
}

.mySlides {
    width: 100%;
}

.mySlides &gt; a img {
  width: 100%;
  height: 100%;
}

/* Caption text */
.text {
    text-align: center;
    font-size: 25px;
  color: white;

}

.Ctitle {
    text-align: center;
    font-size: 40px;
  color: white;
}
div#imageText::before {
    background-attachment: fixed;
    filter: blur(2px);
}
div#imageText{
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.75);
    
}

.dot {
    height: 15px;
  width: 15px;
  background-color: #11998e;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.activeDot {
  background-color: red;
}</pre></body></html>