How can i get the div to follow the cursor not based on page height, the way i currently have it the div gets further away from the cursor as i scroll, i need it to stay with it at all times, i have tried a few things but none seem to work. here is a link to what i have made https://www.poshcloud.co.uk/posh-hero/
this is the function im using
document.addEventListener('mousemove', function(e) {
const circle = document.querySelector('.cursor__ball--big');
const left = e.pageX;
const top = e.pageY;
circle.style.left = left + 'px';
circle.style.top = top + 'px';
});