As you can see on the picture the logo aka moneyflow takes up some space when I put margin-left:auto and margin-right: auto. I want the nav to be exactly at the center. Thanks for helping.
`header {
grid-column: full-start/full-end;
display: flex;
background-color: var(--color-blue-dark);
.logo {
margin-left: 5rem;
align-self: center;
color: rgb(209, 197, 197);
font-size: 2rem;
}
.nav {
margin-left: auto;
margin-right: auto;
align-self: center;
}`