/* -=-=-=-=-=-=-=-=- CSS SHORTHAND NOTES -=-=-=-=-=-=-=-=- */
/* HELPS SAVE FILE SIZE AND IS QUICKER TO WRITE ^_^

font: font-style | font-variant | font-weight | font-size | line-height | font-family

margin: margin-top | margin-right | margin-bottom | margin-left

padding: padding-top | padding-right | padding-bottom | padding-left

border: border-width | border-style | color

border-top: border-width | border-style | color

list-style: list-style-type | list-style-position | list-style-image

background: background-color | background-image | background-repeat | background-attachment | background-position

NOTE ON COLOR: If the color uses the same digits throughout the 6 digits (i.e. - #ffffff OR #000000) you can just shorten the color to "#fff" OR "#000" only 3 digits.

*/
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

h1 {
background: #fff;
font: Univers, Univers Condensed, Univers ExtraBlack;
font-size: 36px;
font-weight: bold;
color: #73A0C7;
}

