
/*remove preset styling */
* {
    margin: 0;
    padding: 0;
}

/* do not underline links */
a{
    text-decoration: none;
}

/* background is light gray; text is black */
body {
    background-color: #f2f2f2;
    color: black;				
    width: 100%;
}

/* footer has black background and white text */
footer {
    clear: both;
    text-align: center;
    background-color: #264d73;
    color: white;
    margin-top: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: .75em;
}
