CSS Resources > 4. Text & Fonts
Font & icon resources
- https://fontawesome.com/icons
 - https://material.io/tools/icons/?style=baseline
 - https://fonts.google.com/
 
Common text properties
.body-copy
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    font-weight: bold;
    color: #999;            // font color
    text-align: left;       // left is default
    letter-spacing: 1.5em;  // space between letters
    line-height: 120%;      // space between lines
    word-spacing: 5px;      // Space between words (usually default is good)
    font-size: 1.1em;       // for responsive design, use em units
}