﻿/*
   New Perspectives on HTML
   Final Project
   
   George Lucas Style Sheet
   Author: David Lucas
   Date:   November 5, 2015

   Filename:    glucasstyles.css
   Supporting Files: none

*/

/* Section Styles */
article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}

body {
margin: 0px auto;
padding: 0px;
line-height: 1.5em;
width: 98%;
max-width: 980px;
min-width: 250px;
font-family: Times New Roman, serif;
background: url(https://lorenzobeanx.files.wordpress.com/2013/06/starwarstakeover.png);
color: yellow;
}

header {
width: 100%;
text-align: center;
}

article {
width: 65%;
float: left;

}

aside {
width: 34%;
margin-top: 25px;
background-color: rgba(0, 0, 255, 0.3); 
float: left;
border: 3px solid rgb(102, 102, 102);
 -moz-border-radius: 15px;
 border-radius: 15px;
 color: rgba(255, 192, 0, 0.7);

}

aside h1 {
font-size: 1em;
margin: 0px;
text-align: center;
margin: 5px 5px;
color: yellow;
}

aside p {
font-size: 0.8em;
margin: 5px 5px;
color: yellow;
}

aside h1+p+p {
text-align: center;
font-size: 1.1em;
color: yellow;
}

aside h1+p+p+p+p {
text-align: center;
font-size: 1.1em;
color: yellow;
}
/* Horizontal Navigation Styles */

nav.horizontal ul li {
   display: block;
   float: left;
   height: 30px;
   width: 20%;
   color: yellow;
}
nav.horizontal ul li a {
   background-color: rgb(51, 51, 51);
   background-color: rgba(255, 192, 0, 0.7);
   display: block;
   font-family: 'Trebuchet MS', Helvetica, sans-serif;
   line-height: 40px;
   color: rgb(241, 241, 241);
   color: rgba(255, 255, 255, 0.8);
   text-align: center;
   text-shadow: black 2px 1px 0px;
   font-size: 1em;
}
/* Footer Styles */

footer {
display: block;
width: 100%;
clear: left;
text-align: center;
font-size: 0.8em;
font-style: normal;
font-variant: small-caps;
border-top: 1px solid black;
background-color: rgba(0, 0, 255, 0.3);
}

/* Block Styles */
h1, h2, h3, h4, h5, h6 {
font-family: Arial, Helvetica, sans-serif;
}

header h1 {
margin: 1em 0em;
font-size: 2em;
}

h2 {
margin: 1em 0em;
font-size: 1.5em;
}

header h1 {
margin: 0px;
}

header h2 {
font-size: 1.2em;
font-style: italic;
margin: 0em;
padding-bottom: 0.5em;
border-bottom:1px black solid;
}

article p {
margin: 0.2em 0.9em 0.7em 0em;
}

