I've been trying to center my footer, but it keeps aligning to the left. Here's a screenshot for reference
Below is the code I'm working with (core.blade.php):
<div class="footer">
<div class="row align-self-end">
<p>Copyright 2021 Me. All Rights Reserved</p>
</div>
</div>
.footer {
background-color: #E21B4D;
padding: 10px;
justify-content: center;
color: white;
display: flex;
align-items:center;
}