@charset "ISO-8859-1";
/* Ensure container covers the whole screen but doesn't block clicks */
  #flower-container {
  /*position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    pointer-events: none; 
    z-index: 9999;
    overflow: hidden;
  }

  /* Style for individual falling flowers */
  .flower {
    position: absolute;
    background: pink; /* Default color */
    border-radius: 50% 0 50% 50%; /* Petal shape */
    opacity: 0.8;
    animation: fall linear infinite;
  }

  /* Falling animation logic */
  @keyframes fall {
    0% {
      transform: translateY(-20px) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }
  