/* global.css
   Basic resets and truly global styles.
*/

/* Universal Box Sizing */
* {
    box-sizing: border-box;
}

/* Body Defaults */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Prevent anchor underlines by default */
a {
    text-decoration: none;
    color: inherit;
}

/* Scope certain resets to #site-content if needed */
#site-content h1,
#site-content h2,
#site-content h3,
#site-content p,
#site-content ul {
    margin: 0;
    padding: 0;
}

/* Remove default list styles within #site-content */
#site-content ul {
    list-style: none;
}
