* {
  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 {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; /* Adjust the width as needed */
  height: 58%; /* Adjust the height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container1 iframe {
  width: 100%; /* Adjust the width as needed */
  height: 60%; /* Adjust the height as needed */
}
.video-container2 {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 69%; /* Adjust the width as needed */
  height: 34%; /* Adjust the height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container2 iframe {
  width: 100%; /* Adjust the width as needed */
  height: 100%; /* Adjust the height as needed */
}

#section1 {
  background-color: rgb(255, 255, 255);
}

#section2 {
  background-color: rgb(255, 255, 255);
}


