/* =========================
   LILY LAYER
========================= */

.lily-layer {
    position: fixed;
    inset: 0;

    pointer-events: none;
    overflow: hidden;

    z-index: 2;
}

.lily {

    position: absolute;

    height: auto;

    opacity: 1;

    animation: lilyFloat 10s ease-in-out infinite;
}

@keyframes lilyFloat {

    0% {
        translate: 0px 0px;
    }

    50% {
        translate: 0px -6px;
    }

    100% {
        translate: 0px 0px;
    }
}