/* CSS for huy */
/* Christina Meng, last updated: 10/14/17 */

/*Tags can be assigned classes, which can be styled all together in .css. (. prefix)*/
/*They can also be assigned IDs, though they can only be assigned to a single element. (# prefix) */

/*syntax:*/
/*Selector {*/
/*  property: value;*/
/*  property: value;*/
/*}*/

body {
  color: navy;
  /*background-color: LightCyan;*/
  background-image: url("cherry-blossoms-washington-dc-march-08-2017-01-2-1068x713@2x.jpg");
  background-size: 100%;
  background-attachment: fixed;
  font-family: Geneva,Tahoma,Verdana,sans-serif
  
}

p {
  font-size: 20px;
}

.purple {
  color: purple;
  }
  
.hey {
    display: inline;
}


