
/*
  
   New Perspectives on HTML and CSS
   Final Project

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

   Filename:         pagestyle.css
   Supporting Files: videos.htm,

  

/* 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;
}

h1 {
    font-size: 32px;
    font-weight: bold;
}


/* Footer Styles */

footer {

text-align: center;
}

*/

