let autoScroll = window.setInterval(() => { if (window.scrollY >= document.getElementById('second-part').scrollHeight) { clearInterval(autoScroll); } window.scrollBy(0, 10); }, 25);