How would you change the text color of the element with the ID "subtitle" to white?
.subtitle { color: #FFFFFF; }
#subtitle { color: white; }
* { color: #FFF; }
subtitle { color: rgb(255, 255, 255); }