/*
body {
  opacity: 0;
}
*/
.snowflake{
  position:fixed;
  top:-10px;
  color:white;
  font-size:14px;
  pointer-events:none;
  user-select:none;
  z-index:9999;
  opacity:0.8;
  animation-name: fall;
  animation-timing-function: linear;
}

/* Aşağı düşme animasyonu */
@keyframes fall {
  to {
    transform: translateY(110vh);
  }