
/*
  
   New Perspectives on HTML and CSS
   Final Project

   Robert Peterson Homepage Style Sheet
   Author: Robert Peterson
   Date:   04/01/2016

   Filename:         homestyle.css
   Supporting Files: 

  

/* Heading Styles */

 
   header {
              text-align: center;
              font-family: Times New Roman;
              font-weight: bold;
              font-size: 30px;
              font-style: italic;
              vertical-align: baseline;
              border-style: ridge;
              border-width: 10px;
   }
   
 
/* Navigation Bar Styles */

ul {
    font-weight: bold;
    font-size: 18px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: lightgray;
    border-style: ridge;

}

li {
    display: block;
    width: 200px;
    
    
}

/* Body Styles */

  body {
        width: 95%;
        min-width: auto;
        max-width: auto;
   }
  body {
        background-image: url(background-lilas.jpg);
        background-repeat: repeat;
   }
  body * {
       font-family: Times New Roman;
       font-weight: normal;
       list-style: none;
       vertical-align: baseline;
   }  

/* Paragraph Styles */
 p {
    font-size: 22px;
    text-align: center;
    width: 800px;
    padding: 10px;
    border: 10px ridge gray;
    margin: 0 auto;
}


/* Address Styles */
  address {
	   text-align: center;
   }

  address {
	   border-top-style: outset;
           border-right-style: outset;
           border-bottom-style: outset;
           border-left-style: outset;
	   -moz-border-radius: 30px;
           -webkit-border-radius: 30px;
           border-radius: 30px;
           margin: 0 auto;
   }
  address {
           margin-top: 10px;
           margin-right: 300px;
	   margin-bottom: 10px;
           margin-left: 300px;
   }

 /* Footer Styles */

#dateBox {
   margin: auto; 
   width: 400px; 
   height: 100px; 
   font-weight: normal;
   border: 1px solid black; 
   background-color: black; 
   color: lightblue;
   font-size: 16px; 
   text-align: center; 
   letter-spacing: 1px; 
   word-spacing: 1px;
}

h2 {
   text-align: center;
}
*/

