* The `h2{}` selects all the `h2` elements on the page where the corresponding stylesheet/styles would be imported/used.
*`position: relative;` sets the `h2` to be positioned relatively, but in normal flow, i.e. it would have no effect on the surrounding element's positions.
*`top: 15px;` moves the `h2``15px` from the top, as required by the challenge.
* Note: Changing an element's position to relative does not remove it from the normal flow - other elements around it still behave as if that item were in its default position.