I am trying to create a website that has its main content on home always split (70% top and 30% bottom). I have tried using split.js but the result is still junky as whenever i go below any major breakpoint (1280, 1024, 1980px) everything breaks.
This is the site - https://lknahk.ee/ i am working on and i will open it to the public soon but i just can't get the homepage to work correctly on both mobile and screen so i am asking here for help as to what should i do. I know vertically splitting screen is easier because content can flow below, but i don't want any content to push scrolls for the user.
Link to barebone codepen of the site - https://codepen.io/bleedeagle/pen/zWBqLj
<div class="split-wrapper">
<section id="one" class="split"></section>
<section id="two" class="split"></section>
</div>
Thanks