To apply Flexbox to the items inside the container, we add display: flex; to the container.
display: flex;
Make sure to pick display followed by : and then flex, ;.
display
:
flex
;