

/* Slideshow container */
.slideshow-container {
  margin: 10px;outline: 5px solid white;border: 5px solid black;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
img {border:2px solid black;height:400px;
}

/* Caption text */
.text {
  color: #ffffff;width:100%;
  font-size: 24px;font-family:arial;
  position: relative;
  text-align: center;
}

.header{color: #ffffff;
  font-size: 44px;font-family:arial;
  text-align: center;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
 
  color: black;
  font-weight: bold;
  font-size: 28px;
  }

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .0} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .0} 
  to {opacity: 1}
}
