.snow-container {
  position: relative; /* Essential for positioning snowflakes within */
  overflow: hidden; /* Hides snowflakes outside the container */
  /* Add other styling for your container as needed */
}

.snow-container::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 2; /* Ensures snow is above other content */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* Allows interaction with content below */
  background-image: url('path/to/snowflake1.png'), 
                    url('path/to/snowflake2.png'), 
                    url('path/to/snowflake3.png'); /* Use multiple images for variety */
  animation: snow 10s linear infinite; /* Adjust duration and timing as needed */
}

@keyframes snow {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  50% {
    background-position: 500px 500px, 100px 200px, -100px 150px; /* Adjust for movement */
  }
  100% {
    background-position: 500px 1000px, 200px 400px, -100px 300px; /* Adjust for movement */
  }
}