body {
  background-color: #293340 !important;
}

.snow {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: fall linear infinite;
  z-index: 15;
}

@keyframes fall {
  0% {
    transform: translateY(-10px) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(var(--fall-height)) translateX(var(--fall-distance));
    opacity: 0.4;
  }
}

/*# sourceMappingURL=christmas.css.map */
