Same, legit was scrolling forms for this reason.
I didn't find a perfect thing I was looking for but this overlays the background at least, maybe if i tweak something it'll go overtop everything?

<!-- Add style bracket -->
html:before {
 animation: grain 8s steps(10) infinite;
 background-image: url(https://i.pinimg.com/originals/69/a7/45/69a74507bc938244fcd6327bf6266589.jpg);
 content: "";
 height: 300%;
 left: -50%;
 opacity:.2;
 position: fixed;
 top: -110%;
 width: 300%;
 pointer-events:none;
}
@keyframes grain
 70% { transform:translate(0%, 15%) }
}
</style>