How would you change the text color of all elements to black using a universal selector?
#* { color: black; }
* { color: black; }
.all { color: black; }
all { color: black; }