.red-text help!

Tell us what’s happening:
My text is still black. I’ve tried doing multiple things, but nothing is happening and I can’t move on.

Your code so far

   .red-text {
     color:red;
   }
</style>
<h2>CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/603.2.5 (KHTML, like Gecko) Version/10.1.1 Safari/603.2.5```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/use-a-css-class-to-style-an-element

You need to add class="red-text" to the element that you want to style. Like

<h2 class="red-text">CatPhotoApp</h2>
1 Like