Relative: move the box without losing its place
The element still keeps its original space in the layout even when you shift it visually.
With `relative`, the browser reserves the same space in the document flow, so sibling elements do not rearrange themselves.
That makes it useful for small visual adjustments, but even more valuable as the reference point for absolutely positioned children.
If you use `top`, `left`, `right` or `bottom` with `relative`, think of the result as a visual offset, not a structural reflow.