/* section hero image */
main {
  background-color: #D3DACE;
  display: grid;
  justify-content: center;
}

/* slide show using animations */
.keyframe-Slideshow {
  animation-name: moveInLeft;
  animation-duration: 5s;
}

.keyframe-Slideshow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

/* slideshow animation 3 pics */
.main_pic_container-slideshow {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.main_pic_container-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: fade 15s infinite;
}

.main_pic_container-slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.main_pic_container-slideshow img:nth-child(2) {
  animation-delay: 5s;
}

.main_pic_container-slideshow img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes fade {
  0%, 20% {
    opacity: 0;
  }
  25%, 45% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
/* animation using keyframes*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/* bio section */
.bio {
  display: flex;
  flex-direction: column;
  order: 2px solid #a8d5ba;
  align-items: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: rgb(232, 248, 238);
  color: rgba(36, 87, 4, 0.9411764706);
  margin-bottom: 1em;
  border: 2px solid #a8d5ba;
  padding: 16px 24px;
  max-width: 500px;
}

/* first parargraph */
.first_paragraph {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 2;
}

.second_paragraph {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 2;
}

.third_paragraph {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 2;
}/*# sourceMappingURL=firstpage.css.map */