Adjust the Hover State of an Anchor Tag,,,is any

Tell us what’s happening:

Your code so far


<style>
  a {
    color: #000;
  }
  
  
  
</style>
<a href="http://freecatphotoapp.com/" target="_blank">CatPhotoApp</a>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36.

Link to the challenge:

Read the challlenge description. You need to use :hover pseudo class and change the color to blue

You can add this:

a: hover{
color: blue;
}