I want to create a footer similar to this design:
https://i.sstatic.net/BIn4C.png
html
<footer>
<div class="container">
<div class="row">
<div class="col-7 copyright__text py-3">
COPYRIGHT TEXT
</div>
<div class="col-5 contact p-3">
dsadsada dsa dasdsa
</div>
</div>
</div>
</footer>
css
footer .copyright__text{
background-color: rgb(152, 181, 79);
}
footer .contact {
background-color: rgb(81, 89, 103);
}
This is how it currently appears:
https://i.sstatic.net/o1sGE.png
I am aiming towards center-aligning the text like in the image above. Using container-fluid did not provide the desired result as the text was not centered correctly and was sticking to the sides...