How would you change the text color of an element with the ID "header" to blue using an ID selector?
* { color: blue; }
#header { color: blue; }
header { color: blue; }
.header { color: blue; }