/*
   Hogwarts School Website
   Final Project
   Author: Nicole Fyfe
   Date:   12/15/2016

   Filename:         hgstyles.css

*/

/* Header Styles*/

header {
	float: left;
	width: 100%;
	text-align: center;
	line-height: 1em;
	color: white;
	font-family: Georgia, sans-serif;
}

header h3 {
	color: gold;
}

header img {
	width: 200px;
	margin: 20px;
	float: left;
}

header nav ul li {
   display: inline; 
   font-size: 0.7em; 
   font-family: 'Courier New', monospace;
   background-color: transparent;
   padding: 0px 10px; 
   margin: 0px;
}

header nav ul li a {
   text-decoration: none; 
   color: white;
}

header nav ul li a:hover {
   color: gold;
}

/* Image Map Styles*/

#imgmap img {
	clear: left;
	float: left;
	margin-left: 44%;
	margin-top: -113px;
}


/* Body Styles */

body {
	background: black url(hogwartsbackground.png) top left no-repeat;
	position: relative;
	width: 95%;
}

/* Section Styles */

#welcome {
	background-color: rgba(255, 255, 255, 0.15);
	font-family: Georgia, sans-serif;
	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	
	clear: left;
	float: left;
	margin-left: 35%;
	width: 50%;
}
 
#welcome h1 {
	font-family: 'Lucida Calligraphy', cursive;
	font-size: 160%;
	font-weight: bold;
	margin: 10px 15px 0px 10px;
	text-align: right;
}
 
#welcome p {
	font-size: 15px;
	margin: -5px 15px 20px 15px;
}
 
#welcome iframe {
	margin: 0px 40px 15px;
}

/* Styles for the photographs table */

table.photographs {
	border: 1px solid white;
	border-collapse: collapse;
	width: 10%;
	float: right;
}

table.photographs th, table.photographs td {
	border: 1px solid white;
}

table.photographs caption {
	caption-side: top;
	text-align: center;
	color: white;
	font-family: georgia, sans-serif;
	padding-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0px;
	width: 150px;
}

 
/* Aside styles */

aside {
	background-color: rgba(0, 0, 0, 0.14);
	color: white;
	float: left;
	font-family: Georgia, sans-serif;
	position: absolute;
	top: 300px;
	left: 10px;
	
	width: 400px;
	height: 400px;
	overflow: auto;
	
    border: 1px solid white;


}   

aside h1 {
	font-size: 30px;
	font-weight: bold;
	margin: 10px 15px 0px 10px;
	text-align: center;
}

aisde h2 {
	font-size: 20px;
	font-weight: bold;
	margin-left: 30px;
}

aside p {
	font-size: 15px;
    margin: 10px 40px;
}

aside p img {
	margin: 10px 50px 0px 20px;
	width: 250px;
}

aside em {
	margin: 10px 25px;
}

/* Footer styles */   

footer {
   clear: left;
   padding-top: 10px;
   width: 100%;
}

footer address {
   font-size: 0.65em;
   font-style: normal;
   text-align: center;
   color: white;
   background-color: transparent;
   margin: 20px 0px;
}

footer a {
	color: white;
}