/************************
STYLES.CSS
=========================
*/


/* IMPORT RESET
======================
Browsers add their own defaults (margin, padding,
and more), so this will zero those out and give us
a clean slate to work with. This is called a reset
and is a best practice in web design.
*/

@import url("reset.css");


/* IMPORT FONT
======================
This line pulls in a typeface named
Karla from Google Fonts in two weights: 400 (normal) and
700 (bold).
*/

@import url("http://fonts.googleapis.com/css?family=Karla;400,700");

/* TYPOGRAPHY
======================
This sets some general typography rules for things like
the body and headlines.
*/

body {
	font-family: 'Karla', sans-serif;
	line-height: 1.4em;
	color: #333333;
}

/* These apply to all three header sizes. */

h1, h2, h3 {
	margin-bottom: 1em;
	text-align: center;
}

/* These are characteristics specific to each
header size. */

h1 {
	font-size: 16px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #999999;
}

h2 {
	font-size: 32px;
	line-height: 1.3em;
	color: #2e9385;
}

h3 {
	margin-top: 1em;
	font-size: 18px;
	color: #999999;
}

/* This sets the color and style for hyperlinks. */

a {
	color: #2e9385;
}

a:hover {
	text-decoration: underline;
}

/* HEADER
======================
This contains the header and navigation.
*/

header {
	margin-bottom: 60px;
	padding-top: 60px;
	padding-bottom: 60px;
	background-image: url("../pictures/header-background.png");
	background-size: cover;
	text-align: center;
}

nav {
	margin-top: 20px;
}

nav ul li {
	display: inline; /* puts all list items on the same line */
}

nav ul li a {
	padding-left: 15px;
	padding-right: 15px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
}

nav ul li a:hover {
	color: #2e9385;
	text-decoration: none;
}

/* CONTENT
======================
This is a wrapper container holding the main
content and the sidebar.
*/

.content {
	max-width: 800px;
	margin: 0 auto;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
}
/* MAIN
======================
This contains the main content (About, 
etc).
*/

main {
	max-width: 640px;
	float: center;
	font-size: 18px;
}

/* SIDEBAR
======================
This contains the sidebar content.
*/

aside {
	max-width: 180px;
	float: right;
	text-align: center; /* centers everything in sidebar */
}

aside div {
	margin-bottom: 3em; /* spaces out each section */
}

aside .profile img {
	border-radius: 180px; /* make image into circle! */
}

/* FOOTER
======================
This contains the copyright.
*/

footer {
	clear: both; /* go to new line instead of between floats */
	padding-top: 60px;
	padding-bottom: 60px;
	color: #999999;
	font-size: 14px;
	text-align: center;
}