Prioritizing a class text color over a general color specification

Tell us what’s happening:

I seem to be doing everything correctly, as the code is working, but it’s not passing the test. Any suggestions?

Your code so far

  body {
    background-color: black;
    font-family: Monospace;
    color: green;
    }
   
  .pink-text {color: pink}
  </style>
<h1 class="pink-text">Hello World!</h1>



**Link to the challenge:**
https://www.freecodecamp.org/challenges/prioritize-one-style-over-another

You forgot to put a semicolon at the end of this line: color: pink

1 Like

d’oh! thanks for the help!