Override Class Declarations with Inline Styles....?

Tell us what’s happening:
lastly my h1 element should be white… im stuck, anyone help?

Your code so far

<style>
  body {
    background-color: black;
    font-family: Monospace;
    color: green;
  }
  #orange-text {
    color: orange;
  }
  .pink-text {
    color: pink;
  }
  .blue-text {
    color: blue;
  }
</style>
<h1 id="orange-text" class="pink-text blue-text">Hello World!</h1>
<h1 style="color: white">```
**Your browser information:**

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

**Link to the challenge:**
https://www.freecodecamp.org/challenges/override-class-declarations-with-inline-styles

You created a second h1 opening tag instead of modifying the one that exists.

Now I see exactly what you mean, thanks Ariel :smiley: