html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: static;
  background: white;
  background: url(../../assets/img-css/bg.jpg);
  background-size: cover;
  touch-action: auto; }

html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  overflow: hidden; }

body {
  overflow: auto; }

h1, h2, h3, h4, text, p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif; }

.Main-Canvas {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  user-select: none;
  opacity: 0;
  transition: opacity .5s ease-out; }
  .hasShownTitle .Main-Canvas {
    opacity: 1; }

.Message {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: calc(50% - 50px);
  text-align: center;
  letter-spacing: 11px;
  color: black;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease-out, letter-spacing .5s ease-out; }
  .isPlaying .Message {
    letter-spacing: 10px;
    opacity: 1; }

.Loading-Bar {
  position: absolute;
  z-index: 998;
  width: 0%;
  height: 1px;
  top: 50%;
  background: black;
  opacity: 0;
  transition: width .5s ease-out, opacity .5s ease-out; }
  .isLoading .Loading-Bar {
    opacity: 1; }

#enterVr {
  position: fixed;
  bottom: 80px;
  left: 50%;
  width: 100px;
  height: 50px;
  margin-left: -50px;
  z-index: 99998;
  border: none;
  background: url(../../assets/img-css/logo_vr.png);
  background-size: cover;
  outline: none;
  cursor: pointer;
  opacity: 0;
  display: none;
  transition: opacity .5s ease-out; }
  .hasVR.hasShownTitle #enterVr {
    opacity: 1;
    display: block; }
  .present-vr #enterVr {
    display: none; }

.enter {
  position: fixed;
  /*top: eval(50% + 100px);*/
  top: 60%;
  left: 50%;
  width: 100px;
  height: 30.10204px;
  margin-left: -50px;
  z-index: 99999;
  border: none;
  background: url(../../assets/img-css/btnStart.png);
  background-size: cover;
  outline: none;
  cursor: pointer;
  opacity: 0;
  display: block;
  pointer-events: none; }
  .isShowingTitle .enter {
    transition: opacity 1.5s ease-out 2s, transform 1.5s ease-out 2s;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-10px); }
  .isClosingTitle .enter {
    transition: opacity 1s ease-out, transform 1s ease-out;
    opacity: 0;
    transform: translateY(0px); }

.title-container {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  opacity: 0; }
  .isShowingTitle .title-container {
    transition: opacity .75s ease-out 1s;
    opacity: 1; }
  .isClosingTitle .title-container {
    transition: opacity .5s ease-out;
    opacity: 0; }

.title {
  width: 516.5px;
  height: 22px;
  background: url(../../assets/img-css/title.png);
  background-size: cover; }
  @media only screen and (max-device-width: 667px) {
    .title {
      width: 80%;
      height: 3.40755%;
      background: url(../../assets/img-css/title.png);
      background-size: 100% 100%;
      margin-top: -50px; } }

.desc {
  position: fixed;
  z-index: 10;
  bottom: 7%;
  width: 100%;
  font-size: 14px;
  text-align: center;
  letter-spacing: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-out .5s; }
  .hasShownTitle .desc {
    opacity: 1; }
  .hasInteracted .desc {
    transition: opacity 1s ease-out;
    opacity: 0; }
  .hasVR .desc {
    display: none; }

.is-mobile .description {
  display: none; }

.description-mobile {
  display: none; }
  .is-mobile .description-mobile {
    display: block; }

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