/* CSS layout */
html,
body {
    margin: 0;
    padding: 0;
}
body {
    background: #000 url('../images/body_bg.png') repeat-x;
    font-family: 'Myriad Pro', 'Calibri', Arial, Sans-Serif;
    color: #ddd;
}

#header {
    color: #dd9700;
    font-family: Raleway, sans-serif;
    font-size: 3em;
    font-weight: bold;
    text-transform: lowercase;
    text-align: center;
    letter-spacing: 0.1em;
}

#content {
    background: #dd9700;
    margin: 5em 0;
    padding: 1em 20%;
    color: #000;
}
#content a:link,
#content a:visited,
#content a:hover,
#content a:active {
    color: #dd9700;
    text-decoration: underline;
}
#content a:hover {
    color: #fff;
}

#footer {
    padding: 1em;
    font-size: 0.7em;
    text-align: center;
    text-transform: lowercase;
    color: #444;
}
#footer a:link,
#footer a:visited,
#footer a:hover,
#footer a:active {
    color: #666;
    text-decoration: none;
}
