There isn’t one universal solution, if the nav-bar is a block, you could try margin: 0 auto; this will give the maximum possible margin on left and right side, which causes the nav bar to center
otherwise, check this centering guide:
if that doesn’t work either, post your code so we can have a crack at it
you could simply add a second image and also float it to the right, that will work
there is only small problem, there isn’t enough height left for two such big images with so much padding and margin, so you will or need to make the image smaller or give the parent element a higher height
if there isn’t enough space, of course it will look poor. But i covered this problem already, if you make the images a lot smaller, you will see it works perfectly. Which simply indicates a lack of space, which you need to fix
<div class="navcenterAlign">
.... Your Nav Bar Code Here ....
</div>
<style>
.navcenterAlign {
display: flex;
align-items: center;
justify-content:center;
}
</style>