We use cookies to improve your experience on our site. By using our site, you consent to the use of cookies. Rejecting cookies will prevent non-essential cookies from loading.
window.addEventListener('scroll', function() {
var scrollBackgroundElement = document.getElementById('scrollBackground');
var scrollPosition = window.scrollY;
// Adjust the scroll position value as needed (e.g., 200)
if (scrollPosition > 200) {
scrollBackgroundElement.classList.add('scrolled-background');
} else {
scrollBackgroundElement.classList.remove('scrolled-background');
}
});