01: Adjust the Hover State of an Anchor Tag

So I’m kina stuck here… The text isn’t turning blue and I can’t seem to figure out what the issue is. Help please!

Your code so far


<style>
  a {
    color: #000;
  }
  a: hover {
    color: blue;
  }

  
</style>
<a href="http://freecatphotoapp.com/" target="_blank">CatPhotoApp</a>

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-hover-state-of-an-anchor-tag

Hi Kobe, 

You have added an extra space between "a:" and "hover", remove that space.

Hope that helps, 
Amit