/* Basic Fontstyle */
font-family: Arial;
color: red;
/* Size (px VS em)*/
font-size: 16px;
font-size: 100%;
font-size: 0.8em;
font-size: 1em;
/* Font-Style */
font-style italic;
font-weight: normal; /* = 400 */
font-weight: bold; /* = 700 */
font-weight: 900; /* valid values: 100,200,300,..,900 */
/* Text Decoration */
text-decoration: none;
text-decoration: overline;
text-decoration: line-through;
text-decoration: underline;
text-decoration: underline line-through overline; /* all combined! */
/* Alignment */
text-align: center;
text-align: left;
text-align: right;
text-align: justify; /* block */
/* Transform Text */
text-transform: capitalize;
text-transform: uppercase;
text-transform: lowercase;
/* Paragraph / Spacing */
line-height: 1.6;
letter-spacing: 3px;