Currently working on my first front-end project, which is a website for a school club. I've been utilizing the Bootstrap library for CSS, but have encountered an issue with my navbar placement. It seems to be leaning more towards the left side rather than being centered horizontally. My goal is to have the title and icon aligned to the left, with the list items on the other side of the container. I tried adjusting margins, but it didn't quite solve the problem. Any assistance would be greatly appreciated. Thank you.
<nav class="navbar navbar-expand-lg ">
<div class="container">
<a class="navbar-title" href="home.html">Title</span>
<img class="navbar-brand" src="https://i.imgur.com/qRujsE0.jpg"></img>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-btarget="#navmenu">
<span class="navbar-toggle-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navmenu">
<ul class="navbar-nav mx-auto">
<li class="nav-item"><a href="home.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About Us</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact Us</a</li>
<li class="nav-item"><a href="join.html" class="nav-link">Join Us</a></li>
</ul>
</div>
</div>
</nav>