Help!how can i prioritise

i… just can’t figure this out

my code so far


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

this is Mozilla firefox

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0.

Challenge: Prioritize One Style Over Another

Link to the challenge:

Hi @chithira1!

You forgot the semicolon at the end.

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Your code is fine but you need to add semi-collon at the end of the color pink.
.pink-text {
color: pink;
}