/* html,body{
  background-image: url("images/landscape.jpg");
  background-size: 100%;
  background-attachment: fixed;
} */

html,body{
  background-image: url("image/landscape.jpg");
  background-size: 100%;
  background-attachment: fixed;
}

header, section, footer, aside, nav, main, article, figure {
  display: block;
}

main{
  width: 1020px;
  min-height: 764px;
  background-color: #404040;
  position: relative;
  margin: auto;
  margin-top: -8px;
  border: 2px solid #faf8f7;
  z-index: 0;
}

header{
  width: 1020px;
  height: 148px;
  border: 2px solid #faf8f7;
  position: absolute;
  top: -2px;
  z-index: 1;
}

nav{
  width: 1020px;
  height: 48px;
  background-color: #e6e6e6;
  border: 2px solid #faf8f7;
  position: absolute;
  top: 148px;
  left: -2px;
  z-index: 2; /* Sits above the header */ 
}


section{
  width: 1020px;
  min-height: 560px;
  background-color: #999999;
  border: 2px solid #faf8f7;
  position: absolute;
  bottom: -2px;
  left: -2px;
  z-index: 2;
  opacity: 0.5;
}
  
.opacity2{
  width: 1020px;
  min-height: 560px;
  background-color: #999999;
  opacity: 0.7;
}

article{
  width: 514px;
  min-height: 400px;
  background-color: #999999;
  border: 2px solid #FCFCFC;
  position: relative;
  left: 253px;
  right: 253px;
  top: 60px;
  bottom: 60px;
  z-index: 3;
}
  
h1{
  text-align: center;
  font-size: 5em;
  color: #fff;
}
  


/*article{
  width: 807px;
  height: 300px;
  background-color: #fff;
  border: 1px solid #000;
  position: relative;
  z-index: 2;
  margin: auto;
} */

.center{
  margin: auto;
  width: 60%;
  border: 3px solid #73AD21;
  background-color: #fff;
  padding: 10px;
}

footer{
  padding: 5px 5px 5px 5px;
  width: 1010px;
  height: 38px;
  background-color: #999999;
  border: 2px solid #faf8f7;
  position: absolute;
  bottom: -2px;
  left: -2px;
  z-index: 2; /* Sits above the header */ 
}



/* NAVIGATION */

 nav ul {
  text-align: center;
  margin: 5px 20px 0px 155px;
  padding-top: 7px;
}

nav ul li {
  display: inline;
  list-style: none;
  float: left;
}

nav a:link, nav a:hover, nav a:visited{
  font-family: Calibri;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  padding: 0px 15px 0px 15px;
  border: 2px solid #000;
  border-radius: 6px;
  margin: 5px;
}

nav a:link{
  color:#777;
  background-color:#fff;
}

nav a:hover{
  color:#000;
  background-color:#aaa;
}

nav a:visted{
  color:#777;
  background-color:#222;
}
 




  
