
@font-face {
	font-family: "Gotham";
	font-weight: normal;
	font-style: normal;
	src:url(font/Gotham-Book.otf) format("opentype");
}

@font-face {
	font-family: "Gotham";
	font-weight: bold;
	font-style: bold;
	src:url(font/Gotham-Light.otf) format("opentype");
}

html{
  background: #F4F4F4;
  font-family: 'Gotham', sans-serif;
}

body{
  	position: fixed;
	width:100vw;
	height:100vh;
	margin:0px;

	background-image: url("assets/bg-dots.png");
}
p{

}

h1{
	
	text-align: center;
	color:rgba(255,255,255,0.95);
	font-size: 1.1em;
	font-weight: normal;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-rendering: geometricPrecision;

}
h2{
	text-align: left;
	color:#4A4A4A;
	font-weight: bolder;
	font-size: 1.3em;
}
h3{
	text-align: center;
	color:#4A4A4A;
	font-weight: bold;
	font-size: 3.5em;
}

#header{
	position: fixed;
	width:60%;
	margin-left: 20%;
	margin-top: 10vh;
}

#heroText{
	
	width: 60%;
	margin:auto;
	margin-top: 15vh;
}
#subhead{
	width: 60%;
	margin: auto;
	text-align: center;
	font-weight: bolder;
	color:#4A4A4A;
	font-size: 1.3em;
	margin-top: 3vh;
}
#name{
	display:none;
	width: 50%;
	margin-left: 25%;
	margin-top: 1em;

	text-align: center;

	font-size: 1.7em;
	padding:0.3em;

	border-radius:2em;
	border:1px solid lightgrey;

	font-family: 'Gotham', sans-serif;

}

.dot{
  
  
  position: absolute;

  width:340px;
  height:280px;

  background-position: center;
}

.hotspot{
	background-color: none;
	position: absolute;
	width:170px;
	height: 40px;

	left:85px;

	bottom: 62px;
}

#timecode{
   display: none;
}

#startButton{
	transition: 0.2s;
	width:20%;
	height:auto;
	margin:auto;

	margin-top: 3vh;
	padding:0.7em;
	
	background: -moz-linear-gradient(left,  #ff004e 0%, #ff0000 100%); /* FF3.6-15 */
  	background: -webkit-linear-gradient(left,  #ff004e 0%,#ff0000 100%); /* Chrome10-25,Safari5.1-6 */
  	background: linear-gradient(to left,  #ff004e 0%,#ff0000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff004e', endColorstr='#ff0000',GradientType=0 ); /* IE6-9 */

  	-webkit-box-shadow: 0px 7px 20px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 7px 20px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 7px 20px 0px rgba(0,0,0,0.25);

  	border-radius: 25px;
}

.timeline{
	position: absolute;
	left: 0;
	top:0;
  	height:8px;
  	transition: 0.5s;

  	width: 10%;
  
  	border-radius: 4px;
}

#red{
	width:0%;
	background: #ff004e; 

  	background: -moz-linear-gradient(left,  #ff004e 0%, #ff0000 100%); /* FF3.6-15 */
  	background: -webkit-linear-gradient(left,  #ff004e 0%,#ff0000 100%); /* Chrome10-25,Safari5.1-6 */
  	background: linear-gradient(to left,  #ff004e 0%,#ff0000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff004e', endColorstr='#ff0000',GradientType=0 ); /* IE6-9 */

  	-webkit-box-shadow: 0px 0px 5px 0px rgba(255,51,65,60);
  	-moz-box-shadow: 0px 0px 5px 0px rgba(255,51,65,60);
  	box-shadow: 0px 0px 5px 0px rgba(255,51,65,60);
}

#grey{
	width:100%;
	background: #D8D8D8;
}


@media (max-width: 600px) {
 #heroText{
	font-size: 2em;
	width: 100%;
	margin:auto;
	margin-top: 15vh;
}
#subhead{
	width: 100%;
	margin: auto;
	text-align: center;
	font-weight: bold;
	color:#4A4A4A;
	font-size: 1.1em;
	margin-top: 3vh;
}
#startButton{
	
	width:80%;
	height:auto;
	margin:auto;

	margin-top: 3vh;
	padding:0.7em;
	
}
#name{
	display:none;
	width: 80%;
	margin:auto;
	margin-top: 1em;

	text-align: center;

	font-size: 1.7em;
	padding:0.3em;

	border-radius:2em;
	border:1px solid lightgrey;

	font-family: 'Gotham', sans-serif;

}
}



