Declare styles through HTML Element
/*
Instead of writing out classes for each font style, we can just apply any we want to the html element in one declaration:
*/
html {
font-size: 125%;
font-family: sans-serif;
line-height: 1.5;
color: #222;
}