Kontainer A

const headersticky = document.getElementById("headersticky"); window.addEventListener("scroll", function () { if (window.scrollY > 0) { containerA.classList.add("scrolled"); } else { containerA.classList.remove("scrolled"); } });