* {
    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: 100vh;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .section img {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  
  .video-container1 iframe {
    width: 100%; /* Adjust the width as needed */
    height: 100%; /* Adjust the height as needed */
  }
  .video-container1 {
    position: absolute;
    top: 72%;
    left: 27%;
    transform: translate(-50%, -50%);
    width: 26%; /* Adjust the width as needed */
    height: 80%; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  
  #section1 {
    background-color: rgb(255, 255, 255);
  }
  
  #section2 {
    background-color: rgb(255, 255, 255);
  }
  
  
