﻿
#snowflakes {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events:none;
  z-index:1000000;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-size: cover;
  animation: rotate 1s linear infinite; /* Add a rotation animation */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
