I'm attempting to align the "login with discord" text and image to the right while keeping the other 2 navbar links centered. However, every time I try to float it right, the centered content/nav items get shifted to the left by the width of the "login with discord" button. My goal is to float it right without affecting the center content position. Below is my code snippet.
<body class="text-center">
<div class="cover-container d-flex h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto mr-auto ml-auto">
<div class="inner">
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="#">Home</a>
<a class="nav-link" href="features.html">Features</a>
<a class="nav-link" href="#"><img src="../img/discordnav.png"></img> Login With Discord</a>
</nav>
</div>
</header>
Check out the site/preview link here -