I started working on my web page. When I scroll down to the next page and select the Main button to go back to the top page, it does not scroll all the way up and stops at the top of the hello text…
I am not sure why this is happeneing… can someone please let take a look and let me know what the issue might be?
Change the first link to a href="#page1" instead of #main. That will fix your issue. Then the next page 2 and so on. You were linking to the section id, you were linking to a link so it was putting the window at the position of the block level element a.
Also it looks like you are trying to do full screen section, try using viewport units for desktop views. So for each section make it 100vh in height. And then utilize flex box to center the text, especially the landing page.