.snowflake {
  position: fixed;
  top: -10px;
  z-index: 9999;
  pointer-events: none;
  color: #fff;
  animation: fall linear infinite;
}

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