/* 
CSS file for Assignment 1 of CS12
Include: 
   1+ selectors
   2+ declarations for a selector
      - consider basic/often-used properties (e.g. "font-family", "background-color", "color", etc.)
 */

body {
   font-family: Arial, Helvetica, sans-serif;
   color: black;
   background-color: lightskyblue;
}
