Which declaration turns the direct children of .container into flex items?
.container
Apply position: flex; to the parent.
position: flex;
Apply flex-direction: flex; to body.
flex-direction: flex;
Apply display: flex; only to every .item child.
display: flex;
.item
Apply display: flex; to their .container parent.