/* =========================================
   AUTUMN LEAVES
   Декоративный слой с осенними листьями
   ========================================= */

#autumn-leaves {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    pointer-events: none;
    user-select: none;

    z-index: 9998;
}

.autumn-leaf {
    position: absolute;

    top: 0;
    left: 0;

    display: block;

    height: auto;

    pointer-events: none;
    user-select: none;

    transform-origin: center center;

    will-change:
        transform,
        opacity;
}


/* На мобильных пока отключаем */
@media (max-width: 900px) {

    #autumn-leaves {
        display: none;
    }

}


/* Не показываем анимацию пользователям,
   отключившим движение в системе */
@media (prefers-reduced-motion: reduce) {

    #autumn-leaves {
        display: none;
    }

}