Render Flow - Flex utilities
Load HTML with flex container
Parse CSS classes: d-flex, justify-content-center, align-items-center
Apply display:flex to container
Convert children to flex items
Apply justify-content and align-items for alignment
Calculate layout and paint flex items
Composite final visual output
The browser reads the HTML and CSS classes, applies display:flex to the container, turns children into flex items, aligns them according to justify-content and align-items, then paints and composites the final layout.