How would you change the text color in all <h3> elements to blue (#0000FF)?
<h3>
h3 { color: rgb(0, 0, 255); }
.h3 { color: #00F; }
#h3 { color: blue; }
h3 { color: #FFF; }