/*
   Local Birds of Cincinnati
   Filename: styles.css

   This file contains styles used on the Local Birds of Cincinnati Web site.

*/

/* Add fonts from Google */
@import url(https://fonts.googleapis.com/css?family=Lora:400,400italic,700,700italic|Corben:400,700);

/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}

/* Align the document to page-center, with minimum and maximum width specified */
header, nav, section, footer {
	margin: 0px auto;
	width: 60%;
	min-width: 600px;
	max-width: 1000px;
}

/* Define default body styles */
body {
	background-color: rgba(0, 76, 153, 0.4);
	background-image: url('background.png');
	background-repeat: repeat;
	font-family: 'Lora', serif;
}

/* Define styles for headings */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Corben', cursive;
}

/* Define link styles */
a:link, a:visited {
	color: rgb(0, 76, 153);
	font-weight: bold;
	text-decoration: underline;
}

a:hover {
	color: rgb(255, 255, 255);
	font-weight: bold;
	text-decoration: underline;
}

/* Header should maintain a font size and be centered */
header {
	text-align: center;
	font-size: 12pt;
	background-color: rgba(0, 0, 0, 0.4);
	padding: 12px;
	margin-bottom: 5px;
	color: white;
}

/* Navigation should be bold */
nav {
	font-weight: bold;
}

/* Navigation and footer should be center-aligned, clear floating objects and maintain a set font size */
nav, footer {
	text-align: center;
	clear: both;
	font-size: 12pt;
}

/* Font-adjustor should be right-aligned and bold */
p.fontAdjustor {
	text-align: right;
	font-weight: bold;
}

/* Font adjustor spans should have a pointer cursor and blue color to match links */
p.fontAdjustor  span{
	cursor: pointer;
	color: rgb(0, 76, 153);
}

/* Images in the main section should be floated right with a default width of 25em (maximum 500px), and 15px margins to the left and bottom */
section img {
	float: right;
	width: 25em;
	max-width: 500px;
	margin-left: 15px;
	margin-bottom: 15px;
}

/* Add student disclaimer to the bottom of footer */
p.disclaimer {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	font-style: italic;
	padding: 5px;
}