@charset "utf-8";

body, html {
	height: 100%;
}
	
body {
	background-color: #01072b;
/*
	background-image: url(images/DeepShadowBG2.png), url(images/DeepShadowBG1.png) ;
	background-repeat: no-repeat, no-repeat;
	background-size: cover, cover;
	background-position: 50%, 50%;
	background-attachment: scroll, fixed;
*/
	background-image: url(images/DeepShadowBG.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;

	color: white;
	font-family: 'Oswald', sans-serif;
}

header, section {
	box-sizing: border-box;
}
header {
	padding: 0px 50px;
	text-align: center;
}
	
		@-webkit-keyframes stretch {
		0%{text-shadow: 2px 2px 0 rgba(0,47,142,0.00), 9px 48px 96px rgba(0,0,0,1.00), -1px -1px 0 rgba(84,215,96,0.00); -webkit-transform:scale(.75) translate(0,600px); transform:scale(.75) translate(0,600px); opacity: 0; color: rgba(119,254,132,0.00);}
		25%{opacity: 1;}
		50%{text-shadow: 2px 2px 0 rgba(0,47,142,0.00), 9px 48px 24px rgba(0,0,0,1.00), -1px -1px 0 rgba(84,215,96,0.00); -webkit-transform:scale(1) translate(0,0); transform:scale(1) translate(0,0); color: rgba(119,254,132,0.00);}
		100%{text-shadow: 2px 2px 0 rgba(0,47,142,1.00),9px 9px 9px rgba(0,0,0,1.00),-1px -1px 0 rgba(84,215,96,1.00); -webkit-transform:scaleX(1); transform:scaleX(1); -webkit-transform:scaleY(1.1); transform:scaleY(1.1); opacity: 1; color: rgba(119,254,132,1.00);}
}
		@keyframes stretch {
		0%{text-shadow: 2px 2px 0 rgba(0,47,142,0.00), 9px 48px 96px rgba(0,0,0,1.00), -1px -1px 0 rgba(84,215,96,0.00); -webkit-transform:scale(.75) translate(0,600px); transform:scale(.75) translate(0,600px); opacity: 0; color: rgba(119,254,132,0.00);}
		25%{opacity: 1;}
		50%{text-shadow: 2px 2px 0 rgba(0,47,142,0.00), 9px 48px 24px rgba(0,0,0,1.00), -1px -1px 0 rgba(84,215,96,0.00); -webkit-transform:scale(1) translate(0,0); transform:scale(1) translate(0,0); color: rgba(119,254,132,0.00);}
		100%{text-shadow: 2px 2px 0 rgba(0,47,142,1.00),9px 9px 9px rgba(0,0,0,1.00),-1px -1px 0 rgba(84,215,96,1.00); -webkit-transform:scaleX(1); transform:scaleX(1); -webkit-transform:scaleY(1.1); transform:scaleY(1.1); opacity: 1; color: rgba(119,254,132,1.00);}
}
			
/*
		25%{ opacity: 1;}
		50%{text-shadow: 2px 2px 0 rgba(0,47,142,0.00),9px 48px 24px rgba(0,0,0,1.00),-1px -1px 0 rgba(84,215,96,0.00); transform:scale(1) translate(0,0);color: rgba(119,254,132,0.00);}
		100%{text-shadow: 2px 2px 0 rgba(0,47,142,1.00),9px 9px 9px rgba(0,0,0,1.00),-1px -1px 0 rgba(84,215,96,1.00); transform:scaleX(1); transform:scaleY(1.1);}
}
*/
	
	@-webkit-keyframes fadeIn {
		0% {opacity:0;}
		70% {opacity:0;}
		100% {opacity:1;}
	}
	@keyframes fadeIn {
		0% {opacity:0;}
		70% {opacity:0;}
		100% {opacity:1;}
	}

	
h1 {
	font-family: 'dharma-gothic-e', 'Oswald', sans-serif;
/*	font-family: 'Oswald', sans-serif;*/
	font-style: normal;
	font-weight: 700;
	
    animation: stretch 5s 1;
    text-transform: uppercase;
    font-size: 172px;
    font-size: 13vw;
    text-shadow: 2px 2px 0 rgba(0,47,142,1.00),9px 9px 9px rgba(0,0,0,1.00),-1px -1px 0 rgba(84,215,96,1.00);
    color: rgba(119,254,132,1.00);
    margin-bottom: 8px;
    margin-top: 18vw;
    margin-top: 20%;
    letter-spacing: 8px;
	transform:scaleY(1.1);
}
h2 {
	animation: fadeIn 5s 1;
	font-family: 'dharma-gothic-e', 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 54px;
	font-size: 3.5vw;
	text-shadow: 4px 4px 6px rgba(0,0,0,1.00);
	color: rgba(255,255,255,1);
	margin-top: 0px;
	margin-bottom: 60px;
	margin-bottom: 7vh;
	font-weight: normal;
	letter-spacing: 5px;
}

nav {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	display: block;
	z-index: 98;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
}

nav.open {
	display: block;
	background: rgba(0,0,0,0.9);
	pointer-events: auto;
}

nav ul#menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	opacity: 0;
}

nav.open ul#menu {
	display: block;
	opacity: 1;
}

nav ul#menu li a {
	width: 80%;
	
	margin: 0 auto;
	display: block;
	height: 16.666vh;
	line-height: 16.666vh;
	text-align: center;
	text-transform: uppercase;
	font-size: 6vh;
	border-bottom: double 6px lightgreen;
	letter-spacing: 3px;
	box-sizing: border-box;
	
}

nav ul#menu li a.last {
	border-bottom: none;
}

button#menubutton {
	position: fixed;
	top: 10px;
	right: 10px;
	width: 65px;
	height: 25px;
	border: solid 10px transparent;
/*	border: none;*/
	background: url(images/hamburger.png);
	background-repeat: no-repeat;
	text-indent: -9999px;
	box-sizing: content-box;
	padding: 0;
	margin: 0;
	cursor: pointer;
	z-index: 99;
}
section {
	font-size: 24px;
	text-shadow: 4px 4px 5px rgba(0,0,0,1.00);
	line-height: 36px;
	padding: 0px;
	width: 50%;
	min-width: 480px;
	margin: 14% auto 10% auto;

}
.bio {
	font-size: 20px;
	line-height: 28px;
	margin: 4px 0px;
}

h3 {
	font-size: 42px;
	line-height: 48px;
	font-weight: normal;
	margin-bottom: .9em;
	margin-top: 1.75em;
	padding-top: 40px;
}

h3.sub {
	border-bottom: double 3px rgba(119,254,132,1.00);
	padding-bottom: 8px;
}

h4 {
	font-size: 24px;
	line-height: 36px;
	font-weight: normal;
	margin-bottom: .5em;
	margin-top: -.25em;
	color: rgba(119,254,132,1.00); 
}

#audiosample {
	clear: both;
	padding-top:10px;
}
#audiosample img {
	position: relative;
	top: 6px;
	margin-right: 8px;
}
.bubbleicon {
	margin: 10px 10px 0px 0px;
	position: relative;
	top: 8px;
}
a {
/*	color: white;*/
	color: rgba(119,254,132,1.00);
	text-decoration: none;
}
a:hover {
	color: white;
	text-decoration: underline;
}
.center {
	text-align: center;
}
.whiteborder {
	border: double 3px white;
}
.floatleft {
	float: left;
	margin-right: 25px;
}

.clear {
	clear: both;	
}
p.amazon img {
	animation: fadeIn 6s 1;
	width: 240px;
}
blockquote {
	padding: 0;
	margin: 20px 0px;
/*	font-style: italic;*/
	font-size: 24px;
	line-height: 36px;
}
.attribution {
	font-style: normal;
	font-size: 16px;
	margin-top: -18px;
	margin-bottom: 32px;
	padding-left: 2%;
	color: rgba(119,254,132,1.00);
}

.marginplus {
	margin-top: 1em;	
}

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

header {
	padding: 0px 10px;
}

h1 {
	font-size: 60px;
/*	text-shadow: 2px 2px 0 rgba(125,0,0,1.00), 6px 6px 0 rgba(0,0,0,1.00), -2px -2px 0 rgba(0,0,0,1);*/
	text-shadow: 2px 2px 0 rgba(0,47,142,1.00),6px 6px 6px rgba(0,0,0,1.00),-1px -1px 0 rgba(84,215,96,1.00);
	animation: none;
}
h2 {
	animation: none;
	font-size: 24px;
	letter-spacing: 2px;
	margin-top: 20px;
}
	p.amazon img {
	animation: none;
}
	
	nav ul#menu li a {
	width: 100%;
	height: 14vh;
	line-height: 14vh;
	font-size: 18px;
	border-bottom: double 3px lightgreen;
	letter-spacing: 1px;
	box-sizing: border-box;
}
	
button#menubutton {
	top: 2px;
	right: 2px;
	width: 65px;
}
	
section {
	font-size: 18px;
	text-shadow: 3px 3px 5px rgba(0,0,0,1.00);
	line-height: 24px;
	padding: 0px;
	width: 90%;
	min-width: 300px;
	margin: 20% auto;
}
p.amazon img {
	width: 180px;
}
	
#audiosample {
	text-align: center;
	padding-top:16px;
}

	
	audio {
		margin: 0 auto;
		text-align: center;
		display: block;
		width: 90%;
	}
.bio {
	font-size: 18px;
	line-height: 24px;
	margin: 4px 20px;
	clear: both;
	text-align: center;
}
h3 {
	font-size: 28px;
	line-height: 36px;
	text-align: center;
}
.floatleft {
	display: block;
	width: 180px;
	float: none;
	margin: 20px auto;
	margin-top: 0px;
}

blockquote {
	font-size: 18px;
	line-height: 24px;
}
.attribution {
	margin-top: -12px;
}

}

/*iPhone 5 and 6 specific queries to solve the background cover bug*/
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
  
  
  html {
/*	background-color: #000;*/
	background-color: #01072b;
	background-image: url(images/Deep-Shadow-bg1380.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
/*	background-attachment: fixed;*/
/*	overflow: hidden;*/
	  
	  
}
body {
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
	background-image: none;
	background-attachment: scroll;
}

}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
	  
  html {
/*	background-color: #000;*/
	 background-color: #01072b;
	background-image: url(images/Deep-Shadow-bg1380.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
/*	background-attachment: fixed;*/
/*	overflow: hidden;*/
}
body {
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
	background-image: none;
	background-attachment: scroll;
}
}

/*iPad 1-2 and then 3-4 queries to solve the background cover bug*/
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {

  html {
/*	background-color: #000;*/
	  background-color: #01072b;
	background-image: url(images/Deep-Shadow-bg1380.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
/*	background-attachment: fixed;*/
/*	overflow: hidden;*/
}
body {
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
	background-image: none;
	background-attachment: scroll;
}
	  
h1 {  
	animation: none
}

}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 2) {
  html {
/*    background-color: #000;*/
	  background-color: #01072b;
    background-image: url(images/Deep-Shadow-bg1380.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
/*    background-attachment: fixed;*/
/*    overflow: hidden;*/
}
body {
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
	background-image: none;
	background-attachment: scroll;
}
 h1 {  
	animation: none
	}
}

	#mc_embed_signup{; clear:left; font-size: 16px; border: 1px solid white; border-radius: 20px; background: rgba(0,0,0,0.3);}
	
	#mc_embed_signup .mc-field-group label {margin-bottom: -1px; }
	
	#mc_embed_signup .mc-field-group input {
    margin-bottom: -5px;
		background: rgba(0,0,0,.5);
		color: white;
}
	
		#mc_embed_signup .mc-field-group input:focus {
		background: rgba(0,0,0,.8);
		color: white;
}
	#mc_embed_signup .button {
    clear: both;
    background-color: #77fe84;
    font-size: 15px;
	letter-spacing: 1px;
    margin: 12px 5px 12px 0;
	padding: 0 30px;
	text-transform: uppercase;
	font-family: 'Fjalla One', sans-serif;
	color: black;
}
	
	#mc_embed_signup .button:hover {
    background-color: #00FD18;
}
	
#mc_embed_signup #mce-success-response {color: #FFF; text-shadow: 4px 4px 5px rgba(0,0,0,1.00);}
#mc_embed_signup #mce-error-response {color: #FFF; text-shadow: 4px 4px 5px rgba(0,0,0,1.00);}

#mc_embed_signup .asterisk {color:#77fe84; font-size:150%; font-weight:normal; position:relative; top:5px;}    
	
	/* ---- particles.js container ---- */
	
	#container {
		position: relative;
	}

#particles-js{
  width: 100%;
  height: 100%;
/*  background-color: #b61924;*/
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}