/*
 * Official Texas Colors
 *   Burnt Orange (PMS 159)     rgb(204,85,0)
 *   Blue (PMS 534)             rgb(51,51,153)
 *   Grey (PMS Cool Grey 6)     rgb(153,153,153)
 *   Green (PMS 5763)           rgb(51,102,0)
 *   Violet (PMS 520)           rgb(102,51,153)
 *   Red (PMS 201)              rgb(153,0,0)
 *   Light Yellow (PMS 726)     rgb(255,255,204)
 */

BODY {
    color: rgb(0,0,0);
    background-color: rgb(255,255,204);
}

A:link {
    color: rgb(204,85,0);
}
A:visited {
    color: rgb(204,85,0);
}
A:hover {
    color: (153,0,0);
    text-decoration: none;
}
A:active {
    color: (153,0,0);
}

H1 {
    text-align: center;
    font-size: 3em;
    color: rgb(51,51,153);
}
