Struggling to grasp Bootstrap 4
specifically, I am focusing on learning how to center my footer, which consists of 2 rows.
Despite my efforts, I can't seem to get the entire footer centered properly.
Below is the current HTML code I am working with:
<section class="block-follow-us">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-4 col-md-1 px-0">
<span class="h5">Follow us:</span>
</div>
<div class="offset-1 col-10 offset-md-0 col-md-3 px-0">
<a href="https://twitter.com/ApolloSciUK?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" target="_blank" class="fab fa-twitter-square"></a>
<a href="https://www.linkedin.com/company/apollo-scientific-ltd" target="_blank" class="fab fa-linkedin"></a>
<a href="https://www.instagram.com/apolloscientific/?hl=en" target="_blank" class="fab fa-instagram"></a>
<a href="https://www.facebook.com/pages/Apollo-Scientific-Ltd/158179738244405?rf=174620749220860" target="_blank" class="fab fa-facebook-square"></a>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container-fluid">
<div class="row text-center">
<div class="col-12">© 2019 - Apollo Scientific Ltd</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-12 col-md-2">
<a href="/">Terms and conditions</a>
</div>
<div class="col-12 col-md-2">
<a href="/">Privacy policy</a>
</div>
<div class="col-12 col-md-1">
<a href="/">Careers</a>
</div>
</div>
</div>
</footer>
On desktop, the layout looks distorted despite my efforts to fix it for hours.
https://i.sstatic.net/H933f.png
However, the mobile view appears to be fine.