I would like to clarify that this is a basic page and there will be no scrolling whatsoever and minimal text.
I have been trying to use Bootstrap 4 to align text to the direct middle of the page, then also having a footer at the bottom of the page, also centered.
I currently have the following
<div class="cover-container text-center">
<div class="row justify-content-center flex-column h-100">
Test
</div>
Anything here adds a scrollbar
</div>
I have tried to change the h-100 and split the classes up into different divs to see if that would make a difference, but it does not.
I have also tried things like (with this, it works, besides a scrollbar being added to the page and to see the footer I need to scroll down):
<div class="cover-container text-center">
<div class="row h-100 align-items-center">
<div class="align-items-center">
<main>
<h1>Hi!</h1>
</main>
</div>
</div>
<footer>
Footer
</footer>
</div>