/* Snowflakes Effect */

@keyframes fall {
  0% { transform: translateY(-100vh); }
  100% { transform: translateY(100vh); }
}

.snowflake {
  position: fixed;
  color: white;
  animation-name: fall;
  animation-timing-function: linear;
  user-select: none;
  pointer-events: none;
  z-index: 1000;
}
