/* CSS Style Sheet for the index.html Page Slideshow */

* {
  box-sizing:border-box;
}

.slideshow-container {
  max-width: 90%;
  position: relative;
  margin: auto;
  background-color:#8aabb1;
  box-shadow: 10px 10px 50px #8aabb1;
}

.slide_sz {
  width: 90%;
  height: 600px;
  max-width: 100%;
  object-fit: cover;
}

.mySlides {
  display: none;
}

.text {
  color: #f2f2f2;
  background-color:#8aabb1;
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
