/*
   New Perspectives on HTML and CSS
   Tutorial 5
   Tutorial Case

   Tables Style Sheet
   Author: Amy Gravely
   Date: 03/26/2016  

   Filename:         tables.css
   Supporting Files: 

*/

/* body styles */

body {
	margin: 0px auto;
	padding: 10px;
	line-height: 1.5em;
	width: 98%;
	max-width: 1600px;
	min-width: 250px;
	font-family: Impact, fantasy;
	background-color: rgb(192,192,192)
}

/* style for Ghost vapor header */

header {
	display: block;
	margin: 10px;
	text-align: center;
	width: 100%;
	
}

/* style for nav list*/

nav ul {
  display: inline;
    width: 50px;
    height: 10px;
    margin: 100px;
    border: no border;
}

/* section style */
section {
	background-color: lightgrey;
        width: 75%;
        padding: 100px;
        border: no border;
        margin: 100px;
}


/* style for section element */
section h2 {
	font-size: 25px;
	letter-spacing: 1px;
	text-align: center;
	color: #1aff1a;
	background-color: black;
}

/* styles for p element */

p img {
	width: 200px;
	height: 200px;
	float: left;
}

#modmaterial{
	float: right;
	clear: right;
	margin-right: 200px;
}


/* Style for Footer*/

footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    max-width: 90%;
  padding:5px;
	margin: 60px; 
}