When multiple rules target the same element, the browser picks the most specific selector.
p { color: gray; }
.highlight { color: orange; }
#intro { color: green; }
ID selectors are stronger than class selectors.