/* 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;
}
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;
}

*{
	box-sizing: border-box; 
}

html, body{
	background: black;
	color: white;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-weight: 300;
}

body{
	padding-bottom: 50px;
}

strong{
	font-weight: bold;
}

header{
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

/*
header h1{
	background:url(images/header-h1.svg) no-repeat;
	display: block;
	height: 0px;
	font-size: 0px;
	padding-top: 70px;
	background-size: contain;
	margin-bottom: 10px;
}
*/

header h1 img,
header h2 img{
	max-width: 100%;
	margin-bottom: 10px;
}

/*
header h2{
	background:url(images/header-h2.svg) no-repeat;
	display: block;
	height: 0px;
	font-size: 0px;
	padding-top: 70px;
	background-size: contain;
}
*/


.module{
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	border-bottom: 1px solid white;
}

.module h1{
	font-weight: bold;
	font-size: 50px;
	margin-bottom: 20px;
}

.module h2{
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
}

.module h3{
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}


.module p{
	font-size: 20px;
	margin-bottom: 20px;
	font-weight:200;
}

.module a{
	color:#fff;
}



.two-columns{
	width: 66%;
	float: left;
	padding-right: 40px;
}

.one-column{
	width: 33%;
	float: left;
	padding-right: 40px;
}


#banner{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

/* clearfix */

.group:after {
  content: "";
  display: table;
  clear: both;
}

/* quote */

blockquote{
}

#testimonial h1{
	font-size: 60px;
	letter-spacing: -2px;
}

#testimonial h2{
	text-align: right;
	font-weight: 300;
}


/* setlist */
#setlist img{
	width: 100%;
	height: auto; 
}

/* about the band */

#about-the-band iframe{
	margin-bottom: 20px;
	width: 100%;
}


/* song list */

ul{
	list-style: outside;
	padding-left: 20px;
}

li{
	margin-bottom: 20px;
}

li span{
	display: block;
}

li span:first-child{
	font-size: 20px;
}

li span:last-child{
	font-size: 16px;
	font-weight: bold;
}


/* contact form */

input[type=text],
textarea{
	background: white;
	border: none;
	display: block;
	width: 100%;
	margin-bottom: 20px;
	padding: 10px;
}

button[type=submit]{
	border: none;
	background-color: #ccc;
	padding: 10px;
}

/*iframes 
iframe{
	border: 1px solid white;
}*/

/* media queries */

@media screen and (max-width: 550px) {

.one-column,
.two-columns{
	width: 100%;
	clear: both;
	padding-right: 0;
}



}