I can't seem to align my paragraph tag text vertically centre.
.footer-container {
background-color: #000;
padding: 100px 0 100px 0;
}
.copyright {
text-align: center;
color: #fff;
text-align: center;
}
.copyright-derrick {
position: relative;
color: #fff;
text-align: right;
margin-right: 25px;
bottom: -80px;
}
<!-- Footer -->
<section class="footer">
<div class="footer-container">
<p class="copyright">Copyright © 2022 Jessica Smith</p>
<p class="copyright-derrick">Created by Derrick Ogole Web Services</p>
</div>
</section>
My code pen: https://codepen.io/derrickogole/pen/rNxbaaK
As you see, the text "Copyright...." is higher up vertically. However, I would like it vertically center so it's both horizontally and vertically centre.