/* index.css */
/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Saira+Extra+Condensed:500');
/* Minimal Reset */
html, body, div, h1, h2, p, section, audio {
 margin: 0;
 padding: 0;
 border: 0;
 font-size: 100%;
 font: inherit;
 vertical-align: baseline;
}
html {
  font-size: 24px;
}
body {
  align-items: center;
  background: black;
  color: rgb(229, 177, 58);
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  height: 100vh;
  justify-content: center;
  line-height: 1.25;
  overflow: hidden;
}
div[id="root"] {
  width: 100%;
}

/* App.css */
.container {
 /* height: 100vh;
  position: relative;
  width: 100%;*/
}

.outerContainer {
  height: 100vh;
  position: relative;
  width: 100%;

}

.intro, .logo {
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 200;
}

.intro p {
  color: rgb(75, 213, 238);
  font-size: 1.25rem;
}

.logo {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 18rem;
}

/* helps fade the text out as it recedes back in space */
.container:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  content: " ";
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  z-index: 100;
}
.crawl {
  font-size: 300%;
  bottom: 0;
  height: 80rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) perspective(300px) rotateX(28deg);
  transform-origin: 50% 100%;
  width: 90%;
}
.content {
  position: absolute;
  top: 100%;
}
.title {
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
}
.subtitle {
  font-family: "Saira Extra Condensed", sans-serif;
  font-size: 250%;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 7rem;
  transform: scale(1, 1.5);
  text-align: center;
}
.content p {
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 4rem;
  text-align: justify;
}

.volume {
  background: transparent;
  border: 0;
  bottom: 10px;
  cursor: pointer;
  left: 10px;
  position: absolute;
  z-index: 1000;
   height: 24px;
}

.controlPanel {
  color: gray;
  background: transparent;
  z-index: 1000;
  top: 10px;
  right: 10px;
  position: absolute;

}


.startMe {
  display: inline;
}

.controller {
 background: transparent;
 color: gray;
 /*display: block;*/
 /*margin: 2px;*/
  /*border: 0;
  bottom: 10px;
  cursor: pointer;
  right: 10px;
  position: absolute;
  z-index: 1000;
   height: 24px;*/
}

.controlButtons {
  background: transparent;
  /*border: 0; put this back later*/
  /*border: 1px;*/
  border-color: red;
  display: inline;
  /*top: 10px;
  cursor: pointer;
  right: 10px;
  position: absolute;*/
  z-index: 1000;
   /*height: 24px;*/
}