I want to center the black div using the align-content center, but it is not getting centered.
.container{
background-color:red;
width:100%;
height:300px;
flex-wrap: wrap;
align-content:center;
}
.flex{
display: flex;
width:30%;
height:30px;
background-color:black;
}
<div class="container">
<div class="flex"></div>
</div>