@charset "UTF-8";

* {
	box-sizing: border-box;
	margin: 0;
}

body, html {
	background: #1b1b1b;
	color: white;
}

.topBorder {
	height: 50px;
}

.heroImage {
	background-image: url("images/hero.jpg");
    height: 810px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	background-color: #1b1b1b;
}
.heroTextParent {
	text-align: center;
	display: table;
	height: inherit;
	width: 700px;
	margin: auto;
}

.heroTextChild {
	display: table-cell;
	vertical-align: middle;
}

.heroTextParent h1{
	font-family: retiro-std-24pt, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 70px;
	letter-spacing: 10px;
	
}

.heroTextParent h2 {
	color: #00fcff;
	font-family: open-sans, sans-serif;
	font-weight: 100;
	font-style: normal;
	font-size: 40px;
	letter-spacing: 7px;
}

.heroTextParent h3{
	font-family: open-sans, sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 35px;
	letter-spacing: 3px;
	margin-top: 50px;
}

.main {
	padding-top: 100px;
	padding-bottom: 100px;
	width: 700px;
	margin: auto;
}
.main h3{
	color: #00fcff;
	font-family: retiro-std-24pt, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 24px;
	letter-spacing: 3px;
	margin-bottom: 25px;
}

.description {
	font-family: open-sans, sans-serif;
	font-weight: 100;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 20px;
	text-align: right;
	border-right: medium solid #00fcff;
	width: 50%;
	padding: 0px 50px 0px 50px;
	float: left;
}

.contact {
	font-family: open-sans, sans-serif;
	font-weight: 100;
	font-style: normal;
	line-height: 25px;
	float: right;
	width: 300px;
	padding-right: 50px;
}

.demo {
	font-family: open-sans, sans-serif;
	font-weight: 900;
	font-style: normal;
	line-height: 50px;
	text-align: center;
	clear: both;
	padding-top: 75px;
}

.footer {
	width: 50px;
	margin: auto;
	padding-bottom: 20px;
}

@media only screen and (max-width:700px){
	.heroImage {
		height: 500px;
	}
	.heroTextParent {
		width: 85%;
	}
	.heroTextParent h1 {
		font-size: 50px;
	}
	.heroTextParent h2 {
		font-size: 35px;
	}
	.heroTextParent h3 {
		font-size: 30px;
	}
	.main {
		width: 85%;
	}
	.description {
		width: 100%;
		text-align: center;
		border-right: 0px;
		padding: 0px 0px 75px 0px;
	}
	.contact {
		padding: 0px 0px 75px 0px;
		width: 100%;
		text-align: center;
	}
	.demo {
		padding: 0px;
		width: 100%;
	}
}

@media only screen and (max-width:400px){
	
	.heroImage {
		height: 300px;
	}
	.heroTextParent h1 {
		font-size: 30px;
	}
	.heroTextParent h2 {
		font-size: 20px;
	}
	.heroTextParent h3 {
		font-size: 20px;
		margin-top: 30px;
	}
	.main h3 {
		font-size: 24px;
	}
	.main p {
		font-size: 14px;
	}
	audio {
		width: 80%;
		margin: auto;
	}
}