
/**
 * Use this to set background color and font color for all pages on the site
 */
body {
    background-color: #ffffff;
    color: #474747;
    font-family: arial,sans-serif;
    font-size: small;
}

/**
 * Use this to style how links look on all pages of the site
 */

a {
    color: #008BFF;
    text-decoration: none;
}

/**
 * Use this to style how strong (bold) text looks on the site
 */
strong {
    color: #474747;
}

/**
 * Uss this to stype how italic text looks on the site
 */
i {
    color: #474747;
    font-style:normal;
    font-weight:bold;
}

/**
 * The category list on the home page is a definition list, you can modify
 * some properties of dl and dd
 */
dd {
   color: #008BFF;
   margin-left: 0px;
}

/**
 * The horizontal lines are hr elements.  give them height and background
 * color here
 */
hr{
     border-top: .1px solid #93D9F8;
     height:0.08em;
     margin-left: -8px;
}


/**
 * pages that have lists of games with icons are using tables.  the icon is
 * the "col1" class, the game title in "col2" class
 */
.col1 {

}

.col2 {

}

/**
 * Add the css for your custom header and footer here
 */