﻿.snowflake {
  position: absolute;
  top: -50px;
  color: white;
  font-size: 1.5rem;
  user-select: none;
  pointer-events: none;
}

.snow-fixed {
  position: fixed;
  bottom: 0;
  animation: none;
color: white;
}

@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}
