Learn Link and Buttons Tutorial make a tags blue

It won’t let me go to the next step because it’s saying that I didn’t make the a tags blue.

https://www.codecademy.com/journeys/full-stack-engineer/paths/fscj-22-web-development-foundations/tracks/fscj-22-improved-styling-with-css/modules/wdcp-22-learn-links-and-buttons-7c515143-5864-4beb-9b48-5c1d1528124e/lessons/learn-links-and-buttons/exercises/browser-link-styles

I think I did. Here’s the code:

a {
cursor: default;
text-decoration: underline;
color: blue;
}

And here’s the error:

Screenshot 2023-03-11 102840

Here’s the instructions:

  1. If you’d like to see the current state of styling, you can open initial.css. The basic layout is okay, but, no links are properly styled. Throughout this exercise, you’ll make all your changes to style.css. Let’s start by reinstating some of the classic browser link styles. First, add a CSS rule to make <a> tags blue by setting the color property to blue in order to distinguish links.

I can also see that the A Tags are blue in the index.html file

Please include a link to the lesson.