#flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.flower {
    position: absolute;
    width: 30px; /* Adjust the size of the flowers */
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

#glitch-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 999;
    background: transparent;
}

.glitch-shape {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Define a few different sizes and opacities for variety */
.glitch-shape:nth-of-type(4n+1) {
    width: 80px; height: 80px; opacity: 0.05;
}
.glitch-shape:nth-of-type(4n+2) {
    width: 30px; height: 30px; opacity: 0.1;
}
.glitch-shape:nth-of-type(4n+3) {
    width: 100px; height: 100px; opacity: 0.08;
}
.glitch-shape:nth-of-type(4n+4) {
    width: 50px; height: 50px; opacity: 0.12;
}