I added an image to the navigation bar brand in Bootstrap, but it's causing alignment issues due to its size. I want the accompanying text to be centered with the image like it is now, but I can't seem to get the other button texts to align properly as well.
Here is what it currently looks like: Output
<a class ="navbar-brand" id="home" href="/">
<img src="https://cdn.discordapp.com/attachments/901496285759168554/1045812932535128084/jeffersonlogo.webp" width="40" height="60" class="d-inline-block align-middle" alt="">
Jefferson Robotics</a>
<a class="nav-item nav-link" id="water" href="/underwater">Underwater</a>
<a class="nav-item nav-link" id="sky" href="/aerial">Aerial</a>
<a class="nav-item nav-link" id="earth" href="/land">Land</a>
I've tried adjusting alignments on the nav-items without success. This is my first time working with Bootstrap and I have limited knowledge of HTML, so I'm feeling quite lost on how to proceed :(