Редактировать:
Удалите поля из ваших тегов p и h1, это то, что отталкивало ваш текст от экрана.
Правила стиля для #navbar также можно удалить:
.left-side {
background: white;
width: 50%;
height: 100%;
left: 0;
bottom: 0;
color: black;
position: absolute;
}
.right-side {
background: black;
width: 50%;
height: 100%;
right: 0;
bottom: 0;
color: white;
position: absolute;
}
.left-side,
.right-side {
display: flex;
flex-direction: column;
justify-content: center;
align-items:center;
text-align:center;
}
h1 {
font-size: 32px;
font-weight: 700;
}
p {
font-size: 18px;
font-weight: 300;
}
h1,p{
margin:0
}
/*#navbar {
color: black;
width: auto;
float: left;
top: 0;
}*/
<div class="left-side">
<p id="navbar">Hello</p>
<h1>Welcome.</h1>
<p>I want to welcome you!</p>
</div>
<div class="right-side">
<h1>Corey M.</h1>
<p>Corey is my name :)</p>
</div>