/* Slideshow container */
.slideshow-container {
  position: relative;
  padding-bottom: 1%;
}

/* Slides */
.mySlides {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;

  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mySlides   h3 {
  color: #ffffff;
  font-size: 30px;
  font-family: Futura-Medium;
  letter-spacing: 3px;
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    margin-left: 100%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}
.mySlides   h1 {
  color: #ffffff;
  font-size: 50px;
  font-family: Futura-Medium;
  letter-spacing: 3px;
}


.mySlides > div {
  width: 100%;
  margin: 0;
  min-width: 350px;

}
/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: rgb(194, 193, 193);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active,
.dot:hover {
  background-color: #ffffff;
}

.quotes p {
  color: white;
  font-size: 18px;
}
