Help with CSS side

Tell us what’s happening:
I am not sure why under my nav; the text-color of black and text decoration of none doesn’t seem to work. I must have something in the wrong order or ??

Also on my CSS it won’t let me call my nav-bar or nav-link anything but nav (nothing after nav). Why would this be?

Thanks again.

Your code so far
https://codepen.io/juligrossman/pen/eYJOrZb
Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15.

Challenge: Build a Product Landing Page

Link to the challenge:

Hey there @juliakajill,

  • Here you have to specifically use a selector that selects your <a> tags not just the div, because the div doesn’t really have a style of text-decoration, because it’s just a container. So you can just use the .nav-link selector to fix this.
  • Did you use a valid CSS selectors. For classes you have to start it with a . (dot). For ids, you have to start it with # (hashtag)