Can't finish this level

h2 { color: red; }

class="red text"

.red-text { color: red; }

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Well, I can see that you declared in your CSS a class called

.red-text {
color:red
}

Which is great!
but the issue appears to be your HTML

<your-element-here class="red text">Your Text Here</your-element-here>

At class you declared 2 separate classes instead of one, this happened due to you using space instead of a dash which will target the CSS Class you declared early on.
So the solution is

<your-element-here class="red-text">Your Text Here</your-element-here>