Looking for advice on how to center my social media icons horizontally and make them collapse vertically when the screen size changes. I currently have no CSS applied to the icons below. Any suggestions or tips on what CSS properties I can use to achieve this? Thank you!
<footer class="footer">
<div class="page-footer">
<p style="font-family: 'Buena-Park-JF', serif; font-weight: 400; font-style: normal; font-size: 40px; text-align: center;"> Find Us!</p>
<i class="fa fa-instagram" style="font-size:50px"></i>
<i class="material-icons" style="font-size: 50px;">facebook</i>
<i class="material-icons "style="font-size:50px">map</i>
<i class="material-icons" style="font-size:50px">phone</i>
</div>
</footer>
.footer {
padding-top: 60px;
background-color: #000;
color:#eae2d8;}
.page-footer{
width: 100%;
padding: 50px 0px 70px 0px;
background-color: $basic-dark-color;}