/*
Theme Name: Scriblet Frost Child
Theme URI: https://scriblet.thoughtropolis.com
Description: A true child theme of Frost, adapted for Scriblet's Hollow.
Author: Tiny McGoo
Author URI: https://thoughtropolis.com
Template: frost
Version: 1.0
*/

.scriblet-leaves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.scriblet-leaves .leaf {
  position: absolute;
  top: -10%;
  left: calc(100% * var(--random-x, 0.5));
  width: 40px;
  opacity: 0.7;
  animation: fall 12s linear infinite;
  animation-delay: var(--delay);
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(120vh) rotate(360deg);
  }
}
