* {
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  border: none;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  position: relative;
  font-family: "Coiny", cursive;
}

.noselect {
  -webkit-touch-callout: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.view {
  position: absolute;
  height: 100vh;
  width: 50vh;
  left: 50%;
  transform: translateX(-50%);
  background-color: #68b9bf;
}

.playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image: radial-gradient(at 40% 30%, #237a5f, #095256 80%);
  cursor: pointer;
  padding: 3rem;
}

.copyrightButton,
.copyrightButton:active,
.copyrightButton:visited {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  font-size: 4rem;
  background-color: transparent;
  cursor: pointer;
  color: #074447;
  text-decoration: none;
}

.play-arrow {
  position: relative;
  left: 0.5rem;
  width: 3rem;
  height: 3rem;
  /*
  background-color: $color-green-dark-2;

  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  */
}

.score {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 10%;
  z-index: 1000;
}
.score--presented {
  top: 20%;
  height: 15%;
}
.score--presented .score__numeric {
  font-size: 6rem;
}
.score__numeric {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: normal;
  color: #237a5f;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(#318f64, #095256);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .score__numeric {
    background-image: none;
    color: #237a5f;
  }
}

#copyright {
  padding: 2rem;
  color: #074447;
  overflow: auto;
}
#copyright .back,
#copyright .back:active,
#copyright .back:visited {
  display: block;
  margin-bottom: 3rem;
  font-size: 3rem;
  text-decoration: none;
  color: inherit;
}
#copyright .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 1rem;
  overflow: auto;
}
#copyright .container .attribution {
  display: block;
  padding: 1rem 0;
}

#root {
  display: none;
}

#menu {
  background-image: url("img/splash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#title, .title, .title__shadow {
  display: block;
  position: absolute;
  top: 4rem;
  width: 100%;
  text-align: center;
  font-size: 8rem;
  font-weight: normal;
}

.title {
  color: #237a5f;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(#318f64, #095256);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title {
    background-image: none;
    color: #237a5f;
  }
}

.title__shadow {
  color: transparent;
  text-shadow: 0 0 0 #095256, 0 0.2rem 0 #095256, 0 0.4rem 0 #095256, 0 0.5rem 0 #095256;
}

@media (min-height: 1200px) {
  #title, .title, .title__shadow {
    font-size: 12rem;
  }

  .playButton {
    padding: 5rem;
  }

  .play-arrow {
    left: 0.4rem;
    width: 5rem;
    height: 5rem;
  }
}
@media (min-height: 1100px) {
  #title, .title, .title__shadow {
    font-size: 10rem;
  }

  .playButton {
    padding: 4rem;
  }

  .play-arrow {
    left: 0.4rem;
    width: 4rem;
    height: 4rem;
  }
}
@media (max-height: 1000px) {
  #title, .title, .title__shadow {
    font-size: 7rem;
  }
}
@media (max-height: 800px) {
  #title, .title, .title__shadow {
    font-size: 6rem;
  }

  .playButton {
    padding: 2.5rem;
  }
}
@media (max-height: 700px) {
  #title, .title, .title__shadow {
    font-size: 5rem;
  }

  .playButton {
    padding: 2rem;
  }

  .play-arrow {
    left: 0.3rem;
    width: 2rem;
    height: 2rem;
  }

  .copyrightButton {
    padding: 0.5rem;
    font-size: 3rem;
  }

  .score--presented .score__numeric {
    font-size: 4rem;
  }
}
@media (max-height: 600px) {
  #title, .title, .title__shadow {
    font-size: 4rem;
    top: 3rem;
  }

  .playButton {
    padding: 1.5rem;
  }
}
@media (max-height: 500px) {
  #title, .title, .title__shadow {
    font-size: 3rem;
    top: 2rem;
  }

  .playButton {
    padding: 1rem;
  }

  .play-arrow {
    left: 0.1rem;
    width: 1rem;
    height: 1rem;
  }

  .copyrightButton {
    padding: 0.5rem;
    font-size: 2rem;
  }

  .score .score__numeric {
    font-size: 2rem;
  }

  .score--presented .score__numeric {
    font-size: 2rem;
  }
}
@media (max-height: 350px) {
  #title, .title, .title__shadow {
    font-size: 2rem;
    top: 1rem;
  }

  .playButton {
    padding: 0.5rem;
  }

  .copyrightButton {
    padding: 0.5rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
