If you want to change the color of all paragraphs and <h2> headers to green, which CSS property would you use?
<h2>
#green { color: #FFFFFF; }
.green { color: #00FF00; }
* { color: rgb(0, 255, 0); }
p, h2 { color: green; }