Exploring the query raised in this post: Why em instead of px?, the top voted response sheds light on the nature of em:
The unit 'em' is not fixed but rather relative to the current font size. It varies according to the user's chosen font preferences, making it unsuitable for general length measurements unless you desire a proportional scale with font changes.
Emphasize the use of 'em' when you want an element's size to adapt alongside the font size.
In the header section of my website, the font-size of the h1 tag is set at 2.1 em while the h2 tag remains at 1.9 em, as demonstrated visually on Google Chrome:
Querying further: Understanding the significance of the ongoing font size as referenced in the description of 'em'. How does one ascertain the current font size effectively?