I've been working on trying to center the social media icons in the footer, but no matter what changes I make in the code, there's been no visible difference. Can anyone offer some assistance?
footer {
background-color: #FFF;
color: white;
padding: 15px;
}
.fa{
color: black;
font-size: 50px;
}
<div class="container">
<footer>
<div class="footer-social-icons">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-instagram"></a>
</div>
</footer>
</div>
</div>