* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

.mySlides img{
  height: auto;
  width: 100%;
}

/* Caption text */
.text {
  color: #1565C0;
  font-size: 60px;
  position: absolute;
  top: 20%;
  left: 0%;
  max-width: 100%;
  padding-left: 3%;
  padding-top: 0.9%;
  font-family: 'Jost', sans-serif;
  line-height: 120%;
  font-weight: 570;
  width: 100%;

}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 7px;
  width: 7px;
  margin: 0 2px;
  background-color:darkgray;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 1s ease;
}

.dotactive {
  background-color: white;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 6s;
}

@keyframes fade {
  from {opacity: 0.4;} 
  to {opacity: 1;}
}

@media only screen and (min-width: 1440px) {
    /* styles for browsers larger than 1440px; */
      .text {
    font-size: 75px;
  }
}
@media only screen and (min-width: 2000px) {
    /* for sumo sized (mac) screens */
      .text {
    font-size: 80px;
  }
}
@media only screen and (device-width: 768px) {
   /* default iPad screens */
     .text {
    font-size: 40px;
  }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 600px) {
  .text {
    font-size: 25px;
  }
  .credit {font-size: 4px;}
}@media only screen and (max-device-width: 414px) {
   /* styles for mobile browsers smaller than 480px; (iPhone5, samsung S7) */
     .text {
    font-size: 14px;
  }
}
