html { overflow: hidden; }
body { 
  font: 14pt Arial, sans-serif; 
  background: #202020;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  margin: 0 0;
}
canvas { 
  display: inline-block; 
  background: #202020; 
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hidden {
  display: none !important;
}
#unsupported {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999999999;
}
#unsupported .content {
  background-color: #2aa7dc;
  padding: 15px;
  margin: 50px;
  color: white;
  font-size: 1.5em;
  text-align: center;
  border-radius: 15px;
}
#unsupported .content i {
  font-size: 4em;
}
#unsupported .content a {
  color: white;
  font-weight: bold;
}
#unsupported .content a:hover, #unsupported .content a:active {
  text-decoration: none;
}
#uploading {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: red;
  padding: 10px;
  color: white;
  font-size: 0.8em;
  text-align: center;
  z-index: 100000;
}
#collection {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  margin: 0 0;
}
#survey {
  color: white;
  font-size: 1.5em;
}
#survey figure {
  background-color: white;
  display: block;
  width: 100%;
  margin: 0;
  padding: 20px;
}
#survey form {
  padding: 20px;
}
#survey h2 {
  margin: 0.5 0;
  font-size: 1em;
  padding: 0;
  font-weight: 100;
}
#survey .question {
  display: flex;
  flex-direction: row;
  margin: 1em 0;
}
#survey .question i {
  display: flex; 
  width: 10%;
  margin-top: 4px;
  opacity: 0.7;
}
#survey .question input {
  display: flex; 
  font-size: 1em;
  color: white;
  background: none;
  border: 0;
  width: 90%;
  margin-left: 10px;
}
#survey #demographics {
  display: block;
  width: 80%;
  background-color: #2aa7dc;
  color: white;
  border: 0;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 1em;
  text-transform: uppercase;
  margin: 0 auto;
  outline: none;
}
#survey #demographics:hover, #survey #demographics:active {
  opacity: 0.8;
}
#timer {
  position: absolute;
  top: 45%;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 100px;
  margin-top: 75px;
  z-index: 1000;
}
#timer.hidden {
  display: none;
}
#intro {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  padding: 10px;
  z-index: 10001;
}
#intro h1 {
  font-size: 1.2em;
  padding: 0.5em 1em;
  margin: 0;
}
#record {
  background-color: red;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 45%;
  left: 50%;
  margin: -50px 0 0 -50px;
  outline: none;
}
#record:hover, #record:active {
  opacity: 0.8;
}
#wavedisplay {
  display: none;
}
#record i {
  color: white;
  font-size: 50px;
}
#record i.fa-play {
  display: block;
  position: relative;
  left: 2px;
}
#record i.fa-stop {
  display: none;
}
#record.recording i.fa-stop { 
  display: block;
}
#record.recording i.fa-play { 
  display: none;
}
#save {
  display: none;
}
#viz {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}