Выровняйте текст в footer
по центру с text-align: center;
.
footer {
...
text-align: center;
}
footer {
background-color: #FFF;
color: white;
padding: 15px;
text-align: center;
}
.fa{
color: black;
font-size: 50px;
}
<div class="container">
<footer>
<div class="footer-social-icons">
<a href="#" class="fa fa-facebook">F</a>
<a href="#" class="fa fa-instagram">I</a>
</div>
</footer>
</div>
</div>