document.addEventListener("scroll", function () { document.querySelectorAll(".bg-image").forEach(function(el) { let y = window.scrollY * 0.2; el.style.setProperty("--parallax", y + "px"); }); });