body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.topnav {
  top: 100;
  position: relative;
  overflow: visible;
}

.topnav a {
  float: left;
  color: black;
  text-align: center;
  padding: 60px 16px;
  text-decoration: none;
  font-size: 20px;
  background-color: white;
}

.topnav a:hover {
  color: #8B668B;
}

.topnav-centered a {
  float: none;
  position: absolute;
  top: 60px;
  overflow: visible;
  left: 50%;
  padding: 10px;
  transform: translate(-50%, -50%);
}

.topnav-right {
  padding-top: -40px;
  float: right;
}

.content {
  text-align: center;
}

.words {
  text-align: left;
  width: 600px;
  color: grey;
  padding-left: 600px;
  font-size: 18px;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  line-height: 30px;
}

/* Responsive navigation menu (for mobile devices) */
@media screen and (max-width: 600px) {
  .topnav a, .topnav-right {
    float: none;
    display: block;
  }
  
  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}


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

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

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

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

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

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

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}