Dear fellows,
I’m having a strange problem on scrolling when viewing the mobile version.
The scroll effects seems truncated and it’s not possible to browse to the end of the page.
Hi, you main element is set to 100vh, so to fit the screen, and everything inside is set to fit in it.
So your structure basically says to the browser: “Cram everything in the windows and don’t you dare letting anything scroll”
If you want your sub elements to be readable and allow the user to scroll, remove the 100vh on the main wrapper and give height dimensions to the inner elements.