
* {box-sizing: border-box}
img {vertical-align: middle;}

.mySlides1, .mySlides2, .mySlides3, .mySlides4, .mySlides5 {
  animation: slideIn 0.6s ease-in forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(0);
    opacity: 0.6;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #000000;
  background-color: #ffffff;
  opacity: 70%;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

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

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