Stage 3: Advanced CSS Design
Flexbox Layouts
Flexbox is the most common way to align items in a row or column.
.container {
display: flex;
justify-content: center;
}