If you have an element with the class "info" and want the text color to be blue, which CSS property would you apply?
.info { color: blue; }
* { color: blue; }
#info { color: blue; }
info { color: blue; }