
/*
     IT 270 Final Project

      Home Page Styles
      Author: Christopher Walters
      Date:   August 16, 2015

      Filename:         home.css
      Supporting files: 


*/

/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}

/* Header styles */

header {
	font-family: Garamond, Courier, sans-serif;
	display: block;
	width: 95%;
	margin: 5px auto;
}


header img {
	height: 280px;
	width: 68%;
	float: left;
	margin-left: -2%;
	border-radius: 15px;
}

div.nameCard {
	color: indigo;
	float: right;
	width: 31%;
	border-radius: 25px;
	margin-top: 30px;
	background-color: moccasin;
	border: 1px solid black;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

header h1 {
	font-size: 2.6em;
	text-align: center;
}

header h2 {
	font-size: 1.8em;
	text-align: center;
}

/* Navigation styles */

nav {
	float: left;
	width: 100%;
	margin: 10px 1% 10px 1%;
}

nav li {
	display: block;
	width: 11%;
	margin-left: 1%;
	margin-bottom: 5px;
	float: left;
}

nav li a {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: white;
	font-size: 1.5em;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	background-color: indigo;
}

li a:hover {
	background-color: darkred;
}

/* Body styles */

body {
	font-family: Garamond, Geneva, sans-serif;
	background-color: navajowhite;
	background-image: url(images/hanginggrapes1.jpeg);
	background-size: cover;
	min-width: 900px;
	max-width: 1600px;
	}
	
article {
	width: 50%;
	height: 30%;
	overflow: scroll;
	height: 300px;
	float: left;
	font-size: 1.2em;
	color: sienna;
	margin-left: 8%;
	margin-top: 4%;
	text-align: left;
	padding-left: 15px;
	background-color: moccasin;
	border: 5px solid sienna;
	border-radius: 10px;

}

article h1 {
	font-size: 1.8em;
	text-align: center;
	font-style: italic;
}

#pics img{
	float: right;
	width: 18%;
	margin-top: 3%;
	margin-right: 10%;
	margin-bottom: 3%;
	border: 9px ridge sienna;
	border-radius: 15px;
}

#foodNerd iframe {
	margin-top: 4%;
	margin-left: 15px;
	border: 10px groove sienna;
}


#links{
	background-color: moccasin;
	color: darkred;
	text-align: center;
	width: 60%;
	margin-left: 20%;
	font-size: 1.3em;
	float: left;
	border-radius: 15px 15px 0px 0px;
}

#backtotop {
	background-color: sienna;
	border: 5px outset moccasin;
	border-radius: 30px;
	width: 8%;
	margin-left: 46%;
	color: moccasin;
	text-align: center;
	float: left;
}

hr {
	float: left;
}

/* Footer styles */
footer {
	background-color: moccasin;
	color: rgb(55, 25, 30);
	text-align: center;
	margin-top: 10px;
	margin-right: 20%;
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-style: italic;
	float: right;
	position: bottom;
	min-width: 900px;
	max-width: 1000px;
	
	}