The main problem here is that the page scrolls almost by itself when content goes below the fold of the browser.
I’m on Firefox on a Mac. But just realized something. I’m using a mouse that has a horizontal finger scroll so maybe I’m worrying too much. If you make the browser really narrow there’s no horizontal scroll bar but I can still scroll it sideways. If you go here https://2010dev.wordpress.com/ and do the same thing, there’s a horizontal scroll bar.
I had the same problem with this site https://dev.senensky.com/ and I got this reply and it worked:
Your div #content has two margins applied to it, id remove the one from line 73. Also your div #colophon in the footer has a fixed width exceeding the containers width, I’d remove that on line 176 so it’s this…
#access .menu-header, div.menu, #branding, #main, #wrapper {
margin: 0 auto;
width:1156px;
}