@charset "UTF-8";

* {box-sizing: border-box;}
.mySlides {display: none;}
img {vertical-align: middle; color:dodgerblue; font-size: 1.25rem;}

/* Slideshow container */
#slideshow-container {
  max-width: 21.875rem;
  position: sticky;
  margin: auto;
}

/* Caption text */
.text {
  color: #003737;
  font-size: 0.9375rem;
  padding: 0.6rem 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: right;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

/* Number text (1/3 etc) */
.numbertext {
  color: rgba(0,0,255,0.1);
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 0.3125rem;
  width: 0.3125rem;
  margin: 0 0.125rem;
  background-color: #000033;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #000099;
}

/* 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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 18.75rem) {
  .text {font-size: 0.6875rem}
}