Skip to content
.snowflake {
position: absolute;
top: -10px;
color: white;
font-size: 12px;
user-select: none;
opacity: 0.8;
animation: fall linear infinite;
z-index: 9999; /* Ensure it appears above content */
}
@keyframes fall {
to {
transform: translateY(100vh);
opacity: 0;
}
}