I want to fill the question mark icon with a white background. As you can see in my example, there is still a small white border around the icon. How is it possible to shrink the background, that only the question mark gets filled?
body {
background: lightgreen;
font-size: 126px;
}
.fa-question-circle:before {
background: white;
border-radius: 100%;
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<i class="fas fa-question-circle"></i>