/*
File Name: template.css
Date: 05/14/2019
Programmer: Aiden Mace
*/


* { box-sizing: border-box; }

header, nav, main, footer { display: block; }


body {
      font-family: Verdana, Arial, Tahoma;
      font-size: 1em;
      font-weight: bold;
      background-color: darkgray;
     }



header {
      background-color: #ADD8E6;
      background-repeat: no-repeat;
      display: block;
      padding-left: 30px;
      
    }

h1 {
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  padding-top: 35px; padding-bottom: 35px;
  margin: 90px;
  background-position: left;
  background-color: #ADD8E6;
  text-align: center; font-size: 2em;
}
 

h2 { font-style: oblique; }

nav {
  text-align: center;
  font-weight: bold;
  padding: 5px;
  width: auto;
  background-color: paleturquoise;
}


nav a { color: black; font-weight: bold; column-rule-style: none; text-decoration: none; }

nav ul { list-style-type: none; margin: 0; padding: 0; }

main { padding-top: 5px;
       margin: 0;
}


footer {
    text-align: center;
    background-color:  #ADD8E6
}


.contact { font-weight: bold; }



#wrapper {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  min-width: 700px;
  max-width: 1480px;
  
}



