Basic CSS 31/44 issue

Tell us what’s happening:
I think I did everything accordingly to what the task requires, yet I can’t proceed, due to an error saying: "Your h1 element should have the inline style of color: white "

Your code so far


<style>
body {
  background-color: black;
  font-family: monospace;
  color: green;
}
#orange-text {
  color: orange;
}
.pink-text {
  color: pink !important;
}
.blue-text {
  color: blue;
}
</style>
<h1 
id="orange-text" 
class="pink-text blue-text" style="color: white"
>Hello World!
</h1>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:80.0) Gecko/20100101 Firefox/80.0.

Challenge: Override All Other Styles by using Important

Link to the challenge:

your code was correct I just changed the space between style="color: white">

and it passed the challenge. This is my test:

<style>
body {
  background-color: black;
  font-family: monospace;
  color: green;
}
#orange-text {
  color: orange;
}
.pink-text {
  color: pink !important;
}
.blue-text {
  color: blue;
}
</style>
<h1 id="orange-text" class="pink-text blue-text" style="color: white"
>Hello World!
</h1>

Here I was thinking I was going mad… thanks for the help!