There is a typo in the CSS for the
element. The property text-align is set to cneter, which is invalid. As a result, the heading is not properly centered on the page.
Steps to Reproduce
Open the page in a browser.
Observe the
element — it does not appear centered.
Inspect the CSS and see text-align: cneter; applied.
Expected Behavior
The
text should be horizontally centered.
Actual Behavior
The
text is left-aligned because the typo invalidates the CSS property.