Help! Override Class Declarations with Inline Styles

What am I doing wrong? Everything looks correct and checks off except that my h1 element is not white… I have tried several things but still cannot get it to be white. Any suggestions?

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 style="color:white" id="orange-text" class="pink-text blue-text">Hello World!</h1>

Nevermind. I finally saw my mistake.

hey hi,can you please update your solution here.