.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 90%;
  display: block;
  margin:auto;
}

/* Left & Right Buttons */
.prev, .next {
  cursor:pointer;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  padding: 16px;
  color: #a4d8ff;
  font-weight: bold;
  font-size: 64px;
  background-color: rgba(0,0,0,0);
  border: none;
  border-radius: 0 3px 3px 0;
  user-select: none;
  transition: 0.3s ease;
}

.prev {
  left: 320px;
  border-radius: 3px 0 0 3px;
}


.next {
  right: 50px;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Bottom Navigation Dots */
.dot-container {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #ffffff;
}

/* Fade Animation */
.fade {
  animation: fadeEffect 0.5s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}