Can someone help me out with this issue I'm facing? I'm struggling with an nth-child statement in my code. Below is the HTML and CSS I'm working with. This problem has been holding me up in the "CSS Selectors 23/23" lesson on Codecademy:
HTML:
<body>
<h3 class="fancy">Blah Blah Blah </h>
<p class="fancy">Blabbidy Blah</p>
<p id="serious">Bling Bling</p>
<p> problem child</p>
</body>
CSS:
body :nth-child(4) {
font-size: 26px;
}