        .dropping-spider {
            position: absolute;
            width: 600px;
            height: 600px;
            top: -600px;
            left: 25%;
            background-image: url('spider-frames.avif');
            background-repeat: no-repeat;
            animation: spider-walk 0.3s steps(3) infinite;
        }

        .dropping-spider-container {
            position: fixed;
            inset: 0;
            width: 100vw;
            height: 100vh;
            z-index: 9999;
        }

        @keyframes spider-walk {
            from {
                background-position: 0 0;
            }

            to {
                background-position: -1800px 0;
            }
        }