Looking to create a circle around a fontawesome social media link. The circle works for most icons, but the Facebook icon is causing issues. The highlight circle does not fit correctly with the Facebook icon. How can this be resolved?
.social-media span {
list-style-type: none;
padding: 5px 5px;
background-color: pink;
display: inline-block;
border-radius: 20px;
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<title>Hi</title>
<body>
<ul class="social-media list-inline" align="right">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-envelope"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-youtube-play"></span></a></li>
<li><a href="#"><span class="fa fa-instagram"></span></a></li>
</ul>
</body>