Changing p element to red

.red-text { color: red; }

CatPhotoApp

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

have no clue how to change p element to red.

I’m not sure what the challenge is asking for but

//this will make all p elements red font color
p {
  color: red;
}

//make all elemnts of class "some-class-name" have red font
.some-class-name {
  color: red;
}

//make the element with id = "some-id" have red font
#some-id {
 color: red;
}

Hope this helps a bit