"Assessment wanted for Structuring a page of content

Hello everyone,I have a problem about structuring page assessment.I adjusted the code but CSS does not apply styling for h1 and h2.I wonder if there is something wrong with the code I fixed.

https://codepen.io/Sentinus/pen/bGEeVZK” is the code

Hello @Sentinus you should try to import the google fonts used in the css! To do so, add a <link> tag in your head section.
After adding these two lines to your pen, the result looked, to me, a lot more like the preview on the assessment page:
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cinzel+Decorative&display=swap" rel="stylesheet">
If you want to learn more about how these work you could check the quick tutorial from google on how to use google fonts, and the documentation about the link tag.