.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  background: #fff8f8;
}

.mySlides {
  display: none;
  transition: opacity 7s ease-in-out;
}

.mySlides.active {
  opacity: 0;
}

img {
  vertical-align: middle;
}

.fade {
  animation: fade 5s;
}

@keyframes fade {
  from {opacity: 0}
  to {opacity: 1}
}

.text {
  color: #ffffff;
  font-size: 15px;
  padding: 10px 14px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background: rgba(122, 24, 54, 0.65);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.4s ease;
  border-radius: 3px;
  user-select: none;
  background-color: rgba(122, 24, 54, 0.55);
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(92, 10, 36, 0.85);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #d8a7b8;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.active, .dot:hover {
  background-color: #7a1836;
}