window.addEventListener('scroll', () => {
let fontSize = Math.max(32, 300 - 0.05 * window.scrollY);
main.style.fontSize = fontSize + 'px';
});position: fixed on the <main> tag and a big height on the <body>.overflow-y: scroll doesn't fix the issue.