
/* TYPE SELECTORS */
h1 {
    color:blue;
  
}

p {
    color:rgb(255, 0, 0);
    
}
/* this is basically the entire document */
/* apply these properties to everything in the body (p1, h1, etc) */
body {
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

/* CLASS SELECTORS */

/* class for my reading responses */

.responses {
    font-family:'Courier New', Courier, monospace

}