/*
   New Perspectives on HTML and CSS
   Tutorial 7&8
   Case Problem

   Reset Style Sheet
   Author: Conor Moore
   Date:   10/18/2015

*/

/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, header, hgroup,
section, nav, audio, video {
   display: block;
}

/* Set default page element styles */

body * {
   font-family: Verdana, Geneva, sans-serif;
   font-size: 100%;
   font-weight: inherit;
   line-height: 1.2em;
   list-style: none;
   vertical-align: baseline;
}

