Spot the Bug answer: The ‘text-align: center;’ property is incorrectly applied to the flex container instead of the flex item.
The fix:
Remove ‘text-align: center;’ from ‘.treat-stage’ and add ‘justify-content: center;’ to ‘.treat-stage’.
Why:
The ‘text-align’ property only centers inline content, not block-level flex items. To horizontally center flex items within a flex container, ‘justify-content: center;’ should be used on the flex container.