Hello, I am having trouble getting my navbar to have this layout: https://i.sstatic.net/clmZA.png
However, I am struggling to place the image on top of the navbar. I am using Bootstrap 5 and have not added any CSS to the navbar yet. Is there a specific property I can use to bring the image to the front? Thank you. Here is the HTML:
<header>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">ABOUT</a>
</li>
<a class="navbar-brand" href="#"><img src="/images/logos/circle-cropped.png" alt=""></a>
<!-- <a href="#"><img src="/images/logos/circle-cropped.png"></a> -->
</ul>
</div>
</div>
</nav>
</header>