* {box-sizing: border-box}
.slideShow1, .slideShow2 {display: none}
img {vertical-align: middle; display: block; margin-left: auto; margin-right: auto;}

/* Slider container */
.slideShow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.slideShowPrev, .slideShowNext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 5px 5px 5px 5px;
  user-select: none;
  background-color: #b3b3b3;
  text-decoration: none;
}

/* Position the "next button" to the right */
.slideShowNext {
  right: 0;
  border-radius: 5px 5px 5px 5px;
  text-decoration: none;
}

/* On hover, add a grey background color */
.slideShowPrev:hover, .slideShowNext:hover {
  background-color: #4e4943;
  color: white;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}