/*雪降らし*/

/* ===== 雪のスタイル ===== */

.snow{
  background-color: #fff; /* 雪の色 */
  border-radius: 50%;
  position: absolute;
  filter: blur(1px);
  animation: animate-snow 60s linear;
}

/* ===== 雪のアニメーション ===== */
@keyframes animate-snow {
  0% {
    opacity: 1;
    top: 0;
  }

  100% {
    opacity: 1;
    top: 100%;
  }
}