H1 tag not working out side of header element

https://codepen.io/cmyhren/full/JVVmEx

In my attached code pen my H1 tag doesn’t work outside my header tag. Thoughts?

Yes it is working, the header is just over the top of it. If you remove the position: fixed, you’ll see it appear. If something is position fixed (or absolute) you need to take into account that it is going to be removed from the normal document flow and will be sitting on top of any other elements. So for example, maybe add padding to the top of the body element that is the same height as that header.