I\'m trying to experiment with CSS.
Here\'s my code http://codepen.io/anon/pen/mJxrdE
Here\'s the html
You're also applying styles to the children of p#first (.carrot and .spinach). If you'd want everything on the first line to be brown you could to something like this:
p#first
.carrot
.spinach
#first, #first strong{ color: brown; }
And that's just one way of going about it.