
/* CSS reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}
html,body {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img {
	border:0;
}
input{
	border:1px solid #b0b0b0;
	padding:3px 5px 4px;
	color:#979797;
	width:190px;
}
address,caption,cite,code,dfn,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}
/* General Demo Style */
body{
	background: #000;
	font-weight: 400;
	font-size: 15px;
	color: #aa3e03;
	overflow-y: scroll;
	overflow-x: hidden;
	font-family: 'Roboto Condensed', sans-serif;
}
.ie7 body{
	overflow:hidden;
}
a{
	color: #333;
	text-decoration: none;
}
.container{
	position: relative;
	text-align: center;

  /*height: 90%;
  width:100%;
  display:flex;
  align-items: center;
  justify-content: center;
*/
}
.clr{
	clear: both;
}
.container > header{
	padding: 30px 0px 10px 0px;
	margin: 20vw 0px;
	position: relative;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.container > header h1{
	position: relative;
    padding: 1vw 0px;
    background-color:rgba(255, 255, 255, 0.7);
	font-size:2em;
}

/* Media Queries */
@media screen and (max-width: 767px) {
	.container > header{
		text-align: center;
		margin: 60vw 0 0 0;
	}
	p.codrops-demos {
		position: relative;
		top: auto;
		left: auto;
	}
}
