How can I ensure that this logo remains fixed at the center top of the page, without moving as the browser size changes? I want the logo to maintain its position and not recenter itself when the browser is resized.
Below is my current CSS
CSS
#logo {
position: fixed;
background-image: url(../img/LOGO1.png);
background-size: 150px;
width: 150px;
height: 150px;
margin: 0 auto;
z-index: 1;
top: 0px;
left: 50%;
transform: translateX(-50%);
}
Thank you for your assistance