Color red on the mixing of hex

I don’t what is the problem with the color Red

Your code so far


<style>
.red-text {
  color:#FF0000;
}
.green-text {
  color: #00FF00;
}
.dodger-blue-text {
  color: #1E90FF;
}
.orange-text {
  color: #FFA500;
}
</style>

<h1 class="#FF0000-text">I am red!</h1>

<h1 class="green-text">I am green!</h1>

<h1 class="dodger-blue-text">I am dodger blue!</h1>

<h1 class="orange-text">I am orange!</h1>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36.

Challenge: Use Hex Code to Mix Colors

Link to the challenge:

Hi !

You have to change the color designation only in the style element. Don’t change the name of the class of the h1 elements.
The class name have no importance in itself here, it’s only used to be refered to by the css. (but it’s important that the css use exactly the same designation than the class name).

… sorry for the broken english, I hope it’s still undestandable ! ^^