* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  max-height: 575px;
  overflow: hidden;
}

.mySlides{
  margin-left:20px;
}
/* Number text (1/3 etc) */
.mySlides .title {
  padding: 8px 12px;
  position: absolute;
  top: 5px;  
  color: #fff;
  font-size: 4.5rem;
  font-weight: 700;
  font-family: 'Chelsea Basis Bold';
  line-height: 1.6;
  text-shadow: #000 3px 3px 3px;
}

/* Caption text */
.mySlides .text {
  color: #f2f2f2;
  font-size: 1.5rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.slideshow-container .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  display: none;
  transition: background-color 0.6s ease;
}

.slideshow-container .active {
  background-color: #717171;
}

/* Fading animation */
.slideshow-container .slidefade {
  -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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 600px) {
  .mySlides .text { font-size: 2.2rem }
  .mySlides { margin:20px; }
}