* {box-sizing: border-box}
.mySlides1, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6. {display: none}
img {vertical-align: middle;}

/* Slideshow container1 */
.slideshow-containerr {
  max-width: 1600px;
  position: relative;
  margin: auto;
}

.blur {
  animation-name: blurr;
  animation-duration: 1.5s; /* Durasi transisi */
}

@keyframes blurr {
  from {
    filter: blur(5px); /* Mulai dengan blur level 10px */
  }
  to {
    filter: blur(0); /* Berakhir tanpa blur (normal) */
  }
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 20px 20px 0;
  user-select: none;
  padding: 16px; 
}

/* Position the "next button" to the right */
.next {
  right: 0px;
  border-radius: 20px 0 0 20px;
}

/* Position the "previous button" to the left */
.prev {
  left: 0px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}