these 3 icon is close to each other, I want to increase the size of these 3 icon, and separate them from each other. is there anybody who can show me how to do this in a single line using css3?, I'm using Bootstrap5 and Google Icons.
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
html code:
<div class="container">
<div class="row">
<div class="col d-flex justify-content-center">
<a href="{% url 'notification' %}" style="text-decoration: none;">
<span class="material-icons">notifications</span>
{% if unread_notifications %}
<span class="badge bg-secondary">{{unread_notifications}}</span>
{% endif %}
</a>
<a href="{% url 'Profile' user.id %}">
<span class="material-icons">person</span>
</a>
<a href="{% url 'Profile' user.id %}">
<span class="material-icons">logout</span>
</a>
</div>
</div>
</div>