

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: 0;
}
 
.mySlides {display: none} 

  
/* The dots/bullets/indicators */
.dot {	
  font-size:20px;
  cursor: pointer;
  height: 45px;
  width: 65px;
  margin: 0 1px;
  background-color: #ebb;
  border-radius: 10%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

 .dot:hover {
  font-size:20px;
  background-color: #f55;
}


.fade {/* Fading animation */
  -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: 300px) {
 .text {font-size: 14px}
}*/