.container {
display: flex;
justify-content: space-between; /* main axis: start, center, end, space-between, space-around */
align-items: center; /* cross axis: start, center, end, stretch */
}Tip
Remember: justify-content works along the MAIN axis (row by default), align-items along the CROSS axis.