I managed to successfully position the footer at the bottom of the page, but I noticed that when I resize the screen to fit a phone, especially when there is scrolling on the page, the footer moves up!
<footer className="footerContainer">
<div className="footerText">© 2019 Designed and Programmed by Othman El houfi</div>
</footer>
footer {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
word-wrap: break-word;
.footerText {
text-align: center;
color: rgba(0, 0, 0, 0.58);
font-style: italic;
font-size: 10px;
}
}