If viewed on desktop it seems fine, but on mobile there is definitely uneven spacing on the left and right side of the list items.
Note: list items are pink.
Any help in spacing these evenly would be much appreciated!
Link to codepen: https://codepen.io/connorocampo/pen/OoRygB?editors=1100
<ul id="flex-nav">
<li><a href="#skills" class="nav-link">Skills</a></li>
<li><a href="#certified" class="nav-link">Certified</a></li>
<li><a href="#hire" class="nav-link">Hire!</a></li>
</ul>
<style>
#flex-nav{
display: flex;
justify-content: space-evenly;
margin-bottom: 0px;
padding-bottom: 5px;
}
</style>

