/*
   New Perspectives on HTML, CSS, and JavaScript
   Final Project: Perspective

   Perspective

   Author: Josh Robertson     
   Date:   August 28, 2015     
   Filename:  PerspStyle.css, 1Limbo.jpg

*/

/* Body Style */

body {
   background-color: rgb(40, 40, 40)
}

/* Header Style */

h1 {
   display: block;
   font-family: Times;
   text-align: center;
   font-size: 50px;
   background: url(1Limbo.jpg);
   background-position: 82% 50%;
   background-size: 1700px 230px;
   background-repeat: no-repeat;
   height: 150px;
}


/* Navigation Styles */

nav.horizontal {
   margin-top: -43px;
   padding-left: 17%;
   padding-top: 0%;
}

nav.horizontal ul {
   height: 22px;
   background-color: rgb(40, 40, 130);
   border-radius: 40px 40px 40px 40px;
   width: 75%;
}

nav.horizontal ul li {
   padding: 0px;
   float: left; 
   width: 11.6%; 
   line-height: 22px;
   height: 20px; 
}

nav.horizontal ul li a {
   display: block; 
   text-align: center;
   width: 73%; 
   font-size: 10px; 
   font-family: Century Gothic;
   text-decoration: none; 
   color: white;
}

nav.horizontal ul li:hover {
   background-color: rgba(255, 255, 255, 0.6);

}


/* Article Style */

article {
   font-size: 20px;
   padding-top: 1%;
   padding-right: 15%;
   margin-top: -16px;
   display: block;
   width: 45%;
   height: 700px;
   padding-left: 5%;
   border-radius: 40px 40px 40px 40px;
   background-color: rgb(110, 110, 110);
}

/* Image Styles */

figure1 {
   display: block;
   float: right;
   margin-right: -40px;
   margin-top: -20px;
}

figure2 {
   display: block;
   float: right;
   margin-right: -40px;
   margin-top: -210px;
}

figure3 {
   display: block;
   margin-top: -210px;
   padding-left: 3%;
}