Override Styles in Subsequent CSS -

What do I do wrong ?

Your code so far


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

<h1 class="pink-text blue-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/72.0.3626.121 Safari/537.36.

// running tests

Your h1 element should be blue.

// tests completed

 .blue-text: {
    color: blue;
  }

You have an extra character here, can you see it? If you remove it the text will turn blue in the displayed result, and you will pass the tests

good catch! thank you very much