.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  color: #fff;
  pointer-events: none;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}
