
/**
 * Use this to set background color and font color for all pages on the site
 */
body {
    background-color: #ffffff;
    color: #373E48;
    font: medium Arial;
    margin: 0;

}

/**
 * Use this to style how links look on all pages of the site
 */
a {
    color: #0000FF;

}

/**
 * Use this to style how strong (bold) text looks on the site
 */
strong {

    color: #FFFFFF;
    
}

/**
 * Uss this to stype how italic text looks on the site
 */
i {
    color: #373E48;
}

/**
 * The category list on the home page is a definition list, you can modify
 * some properties of dl and dd
 */
dd {
   color: #373E48;
}

/**
 * The horizontal lines are hr elements.  give them height and background
 * color here
 */
hr{
   -moz-box-sizing:border-box;
   -moz-float-edge:margin-box;
   border:1px inset;
   color:gray;
   display:block;
   height:2px;
   margin:0.5em auto;
}


/**
 * 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
 */