/* ------------------------------Exam 1 Stylesheet --------------------------*/
/* This i simply the style sheet for exam one. That's it.                    */


body
{

/* although the textbook doesn't use it much, I prefer using the color names */
/* ... although hex would have probably been better since that is pretty light*/

    background-color: lightgrey;
    color:blue;
    
    font-family: Arial,Arial, Helvetica, sans-serif;

}


/* While not mentioned, I'm pretty sure you can do "*{}" to target everything with the CSS*/
/* but to be fair, all the text/stuff is within the <body> tags so not really needed*/