To adjust the position of the text in relation to the logo image, you can add a negative margin-top value to the .header .logo CSS rule. For example, if you want to move the text up by 10 pixels, you can add margin-top: -10px; to the rule:
.header .logo {
margin-right: auto;
font-size: 2.5rem;
color: #10221b;
font-weight: bolder;
margin-top: -10px; /* adjust the value as needed */
}
This will move the text up by 10 pixels, aligning it with the top of the logo image. You can adjust the margin-top value to achieve the desired position.
Note that this solution assumes that the logo image has a fixed height, as specified by the .header .logo img rule. If the height of the image is variable, you may need to adjust the margin-top value accordingly.