Flexbox align-items: center; is not working.
I want to position .container at the center
Here is the code for it, I don't understand why
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-content: center;
}
.container {
  position: relative;
  background-color: white;
  width: 100%;
  max-width: 1000px;
  min-height: 100px;
}<div class="container">
  <div class="peronal"></div>
  <div class="profess"></div>
</div> 
     
     
    