/* Define the initial state of the elements */
body{
cursor: url(https://cur.cursors-4u.net/nature/nat-8/nat791.cur), default;}
div {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
  }
  
  /* Define the animation state of the elements */
  div.animate {
    opacity: 1;
    transform: translateY(0);
  }
  