﻿/*
   New Perspectives on HTML and CSS
   Final Project
   
   Filename: base.css

   This file contains styles used in the mpl.htm file.

*/

/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, header, 
section, nav, div, img {
   display: block;
}


/* Set the default page element styles */

body * {
   font-family: Verdana, Geneva, sans-serif;
   font-size: 100%;
   font-weight: inherit;
   line-height: 1.2em;
   list-style: none;
   margin: 0px;
   padding: 0px;
   text-decoration: none;
   vertical-align: baseline;
}



/* Body Styles */
body {
   font-family: Verdana, Geneva, sans-serif;
   font-weight: normal;
   margin: 0px auto;
   width: 1000px;
   background-image: url(parch2.jpg);
   background-repeat: repeat;
}