I am trying to build following site.
I cant figure out how I can make the flexbox in the center of the Image. What am I doing wrong?
.background {
max-height: 700px;
max-width: 1200px;
margin: auto;
}
.container {
display: flex;
flex-direction: column;
background-color: black;
width: 1200px;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
<div class="background">
<img src="../FlexBox Project/Pictures/img-mission-background.jpg">
<div class="container">
<div class="header">
<h2>Our Mission</h2>
</div>
</div>
</div>