* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
}

.topNav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Infant", serif;
  background-color: white;
  overflow: hidden;
  box-shadow: 2px 9px 20px 1px rgba(0, 0, 0, 0.15);
}

.topNav a {
  float: left;
  color: black;
  text-align: center;
  padding: 14px 25px;
  text-decoration: none;
  font-size: 20px;
}

.topNav a:hover {
  background-color: #ddd;
  color: black;
}

.topNav a:active {
  background-color: #d4e5f5;
  color: black;
}

.slideShowContainer {
  position: relative;
  top: 50px;
  max-width: 750px;
  max-height: 500px;
  margin: auto;
}

.mySlides {
  display: none;
}

.numberText {
  color: #f2f2f2;
  font-size: 22px;
  padding: 8px, 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.text {
  color: #f2f2f2;
  text-align: center;
  font-size: 22px;
  padding: 8px, 12px;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dot {
  cursor: pointer;
  height: 13px;
  width: 13px;
  margin: 40px 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
dot:hover {
  background-color: #717171;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
