*{
    margin: 0;
    font-family: "Poppins",sans-serif;
    scroll-behavior: smooth;
   justify-content: space-evenly;
  }
  body{
    backdrop-filter: contrast(1);
    background: fixed;
    background-position-x: center;
    min-height: 100vh;
    background-size: cover;
    animation: fly-in 1s ease-in-out;
    animation-delay: 1s; /* Adjust the delay time as needed */
    animation-fill-mode: both;
  }
  .section {
    height: 45vh;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section .images{
  display: flex;
  padding-top: 10%;
}
.section .imgaes a img{
  width: 70%;
  height: 30vh;
}
.section .text_down{
  display: ruby-text;
}
.section .text_down .text1{
  padding-left: 9%;
}
.section .text_down .text2{
  padding-right: 13%;
}
.start_section {
  height: 70vh;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.start_section img{
  width: 100%;
  height: 70vh;
  position: relative;
}
.section h2{
  display: flex;
  padding-bottom: 5%;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
#section0 {
  background-color: #fff;
}
#section1 {
    background-color: #61abf4;
}
  
.final_section {
  height: 100vh;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.final_section.visible {
  opacity: 1;
  transform: translateY(0);
}

.final_section img {
  width: 100%;
  height: 100vh;
  position: relative;
}
  .photo_section {
      padding-top: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .photo_container {
      margin: 0 20px;
      text-align: center;
  }
  
  .photo {
      width: 130px;
      height: 20vh; 
      display: block;
      margin: 0 auto;
  }
  
  .photo_container p {
      margin-top: 10px;
      font-size: 20px;
  }