/* Snowflake Animation Styles */
.snowflake {
  position: fixed;
  top: -10px;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  animation: fall linear infinite;
  animation-duration: 3s;
  animation-delay: 0s;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}