* {
    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;
  }

  #section1 {
    background-color: rgb(255, 255, 255);
  }
  
  
  
