I can't find what's wrong

I did the exact thing, the collor of h1 changed to pink, bud the run does not work.
What should I do?

}

.pink-text {

color: pink;

}

<h1, class=“pink-text”>Hello World!


<style>
body {
  background-color: black;
  font-family: monospace;
  color: green;
  
}
.pink-text {
  color: pink;
} 
</style>

<h1, class="pink-text">Hello World!</h1>

Your browser information:

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

Challenge: Prioritize One Style Over Another

Link to the challenge:

You shouldn’t have that comma in there. When I fix that, your code passes for me.

The syntax highlighting help detect bugs like that - the h1 in the opening tag should have been highlighted like it is in the closing tag.