What am I doing wrong?!?

Tell us what’s happening:
Keep getting error message.

Your code so far

.red-text { color: red; } p{font-size:16px; }

CatPhotoApp

Kitty ipsum text.

<p Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/change-the-font-size-of-an-element

Hey codenoob what specific error message are you recieving?

Could you show your html code?

Your paragraph tag is missing the closing bracket and you will need to assign the class red-text to the paragraph element if you wish to change its color.

Try “.red-text {color: red; font-size: 16px}” instead. Tags under the same class should be in the same brackets and separated by a semicolon (;)