Recently delving into the world of Bulma, I decided to take a shot at customizing my CSS. Unfortunately, it seems that after some tweaking, my screen layout has gone haywire. Can anyone shed light on why two elements might refuse to maintain proper spacing between each other? Specifically, why is the green bar partially hidden under the navbar?
<main>
<nav>
</nav>
<div className="container">
Bunch of random Content
</div>
</main>
The setup described above seems to be resulting in things being stacked on top of one another. Any recommendations on how to rectify this issue?