CSSUniversal Selector

The universal selector (*) applies a style to every element on the webpage. This is helpful when you want to set general styles, such as setting a default font or color for the whole page. Be careful with the universal selector because it affects every element and can sometimes make your page slower or harder to customize if overused.

* { font-family: Arial; color: blue; }