I tried everything including display block and margin auto and flexbox justify-content: center; but nothing seems to work.. I am new to css so if you're wiling to help you will mot probably find a minimal error that no one else does that changes everything.
.container {
width: 1024px;
min-height: 1000px;
background-color: red;
margin: 10px auto;
}
header {
width: 100%;
height: 150px;
background-color: black;
}
.logo {
margin: auto;
}
<body>
<div class="container">
<header>
<div class="logo">
<a href="index.html">
<img src="images/Logo-lowres.svg" alt="">
</a>
</div>
</header>
</div>
</body>