I'm trying to make an icon change color when hover it, but don't work. I tried using id cuz i'm using more icons so that make it easy, but i'm not sure if this is the correct way :D HTML
<div class='col5'>
<h5>NE GASESTI PE</h5>
<i class="fab fa-facebook" id='fb'></i>
</div>
#fb {
padding-left: 15px;
font-size: 40px;
color: gray;
}
#fb :hover {
color: blue;
}