@charset "UTF-8";

/* Layout (global rules for all sizes) */

body { margin: 0; padding: 10;}

header a.logo {
/*targets the specific anchor tag that is inside the header.*/
	display: block; /*anchor acts like a div*/
	background-position: 0px 0px;
	background-repeat: no-repeat;
}

/* Layout Large Screens (default for older browsers) */

nav {
	width: 100%;
	display: block;
	position: absolute;
	background-color: #000;
}

header {
	height: 275px; /*height of largest banner*/
	background: url(../images/banner_large.jpg) no-repeat right 0px; /* right 0px = x and y pos*/
}

header a.logo {
	width: 682px;
	height: 274px;
	top: 1px;
	margin: 0 auto;
	/*text-align: center;*/
	background-image: url(../images/headers_large.png);
}

article { padding: 100px 20px 10px 20px;
	font-size: 1em;
	line-height: 150%
}

article ul {
	list-style-type: square;
	padding: 10px;
}

nav { top: 275px; /*same as the height of our header */}
nav a { margin: 12px 0px 10px 20px; /*creates space around the links*/}

@media screen and (max-width:990px){
	footer { padding-left: 20px;}
	/* rule only triggers when the screen is less than 990px */
	/* works instead of making an entirely new media query */
}

div.gallery {
	width: 800px;
	padding: 10px 20px 10px 20px;
	margin: 60px 20px 80px 20px;
	border: 1px solid #ccc;
	font-size: 0.8em;
	float: center;
}

h1 {
	font-size: 2em;
	text-transform: uppercase;
	font-weight: bold;
	color: #985dBa;
	margin: 20px 0px 10px 0px;
}

h2 {
	font-size: 1.4em;
	margin: 30px 0px 10px 0px;	
}
