/*
Theme Name: The Basics
Description: Super minimal design. I think.
Author: Andrew Ramos
Author URI: http://andrewramos.com
Version: 1.0
*/



/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  height: 100%;
  width: 100%;
  font-size: 100%;

}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*End meyerweb reset*/

/* Reset from Trent Walton
-------------------------------------------------------------- */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,code,del,dfn,em,img,q,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;margin:0;padding:0;}
table{border-collapse:separate;border-spacing:0;margin-bottom:1.4em;}
caption,th,td{text-align:left;font-weight:400;}
blockquote:before,blockquote:after,q:before,q:after{content:"";}
blockquote,q{quotes:;}
a img{border:none;}


* {
  -webkit-font-smoothing: antialiased;
}

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

a {
	text-decoration: none;
	  -webkit-transition: all 0.2s ease;
	     -moz-transition: all 0.2s ease;
	      -ms-transition: all 0.2s ease;
	       -o-transition: all 0.2s ease;
	          transition: all 0.2s ease;

}

body {
	color: #3a96de;
}

.container {
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 0 5.5%;
	padding-top: 2em;
}

.bar {
	background-color: #3a96de;
	width: 100%;
	height: 5px;
	position: absolute;
	top: 0;
	left: 0;
}

h1 {
	font-family: 'Gotham SSm A', 'Gotham SSm B'; 
	font-weight: 300; 
	font-style: normal;	
	font-size: 150%;
	line-height: 1.3em;
	margin-top: .5em;
}

.space {
	margin-top: 1em;
}

p {
	font-family: georgia;
	font-size: 110%;
	line-height: 1.5em;
	margin-top: 1em;
}

section {
	margin-bottom: 1em;
}

section img {
	margin-bottom: .5em;
	z-index: 100;
	width: 70px;
}

section h1 {
	/*color: #c1aa9b;*/
}

section a {
	color: #3a96de;
	border-bottom: solid 2px #D9ECFC;
}

footer {
	background-color: #3a96de;

}

footer section.container {
	color: #c1aa9b;
	font-size: 70%;
	padding-bottom: 1.6em;
	margin-top: 4em;
	padding-top: 1.2em;
}

footer p {
	font-family: 'Gotham SSm A', 'Gotham SSm B'; 
	font-weight: 300; 
	font-style: normal;	
	color: #084370;
	margin-top: 0;
}

footer a {
	color: #084370;
	border-bottom: solid 2px #2E86CC;
}

footer h2 {
	font-size: 
}

/*MEDIA QUERIES*/
@media(min-width: 500px) {
	body {
		font-size: 120%;
	}

	.container {
		width: 70%;
		margin: 0 auto;
		position: relative;
		padding: 0;
		padding-top: 3em;
	}

	.bar {
		background-color: #3a96de;
		width: 40%;
		height: 12px;
		position: absolute;
		top: 0;
		left: 0;
	}

	section a:hover {
		color: #1263A2;
		border-bottom: solid 2px #F4FAFF;
	}

	footer section.container {
		color: #c1aa9b;
		font-size: 70%;
		margin-top: 4em;
	}

	footer a:hover {
		color: #fff;
		border-bottom: solid 2px #45A2EC;
	}

}

@media(min-width: 700px) {
	.container {
		width: 50%;
	}
}

@media(min-width: 1024px) {
	.container {
		width: 30%;
	}
}