/*
   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: Arnoldboecklin, 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: 85%;
        padding: 100px;
        border: 
        margin: 100px;
}


/* style for section element */
section h3 {
	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;
}

/*Styles for radio buttons*/

#boxmod {
	border-style: solid;
	width: 200px;
	margin: 10px;
	padding: 10px;
	float: left;
	border-width: 5px;
	border-color:#1aff1a; 
}



footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    max-width: 90%;
  padding:5px;
	margin: 60px; 
}
