#falling-dollars-container {
    position: absolute; /* Change from fixed to absolute */
    top: 0;          /* Position at the very top of the body */
    left: 0;
    width: 100%;
    height: 5000px; /* Add a large fixed height */
    pointer-events: none;
    overflow: hidden;
    z-index: 1;      /* Adjust as needed */
}

.dollar-sign {
    position: absolute; /* Positioned relative to the fixed container */
    top: -50px; /* Initial static position above the container */
    font-size: 20px; /* Adjust size as needed */
    color: #008000; /* Green color for dollar signs */
    opacity: 0.6; /* Semi-transparent */
    user-select: none; /* Prevent text selection */
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        /* Animation starts translated 50px above the element's static position */
        /* Effectively starts 100px above the container's top edge */
        transform: translateY(-50px) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        /* Fall a large fixed distance down the page */
        /* Adjust this value based on expected page length */
        transform: translateY(5000px) rotate(360deg);
        opacity: 0.1;
    }
}
