To change the color of all <h3> headers to light green (#90EE90), which CSS property would you use?
<h3>
h3 { color: #000000; }
#h3 { color: rgb(144, 238, 144); }
.h3 { color: lightgreen; }
h3 { color: #90EE90; }