* {box-sizing:border-box}

body{
    background-color: blanchedalmond;
}

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

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Caption text */
.text {
    color: black;
    font-size: 60px;
    padding: 12x 8px;
    position: absolute;
    top: 300px;
    width: 100%;
    text-align: center;
  }

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

/* the "next button" goes on the right instead of left */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* makes the white arrow more visible on hover */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}