
/* to display text in front of the aframe canvas*/
a-scene{
  z-index: -1;
}

/**/


body{
    background-color: #000;
    /*margin: 0px;
    overflow: hidden;*/
	color: #fff;
	font-family: 'Arial',
}

a:link, a:hover, a:visited, a:active {
    color: white;
    text-decoration: none;
}

.container{
    position:absolute;
    width:100%;
    display: flex;
    justify-content: center;
    margin-top: 5%;

    color:black;
}

.info{
	font-family: Arial;
	position:absolute;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;

    position: absolute;
    /*top: 50%;*/
    left: 50%;
    transform: translate(-50%, -0%);


}

.info .company{
    font-size: 2em;
}

.info .title{
    font-size: 3em;
    font-family: 'Poiret One', cursive;
}

.info .button{
    font-weight: bold;
    background-color: limegreen;
    padding: 10px;
    margin: 24px 0 0 0;
}

.info .instructions{
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 24px 0 0 0;
}


.menu{
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 5px;
    display: none;
    z-index:10;
}

.cursor_button{
    font-weight: bold;
    background-color: limegreen;
    padding: 10px;
    margin: 24px 0 0 0;
}

.hidden{
    display: none;
}

@media (max-width: 600px) {
    .info {
      width: 60%
    }

    .info .company{
        font-size: 1em;
    }

    .info .title{
      font-size: 3em;
    }

    .menu{
        display: block;
    }

}
.menu{
	display: block;
}

.loading{
    position: fixed;
    height: 100%;
    width: 100%;
    display: -webkit-flex; /* Safari */
    -webkit-align-items: center; /* Safari 7.0+ */
    -webkit-justify-content: center; /* Safari 7.0+ */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading.hidden{
    display: none;
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.controls_wrap{
  z-index: 50;
  position: absolute;
      display: flex;
    justify-content: space-between;
  width: 90%;

  padding:5%;
}

.control{
  display: -webkit-flex; /* Safari */
  -webkit-align-items: center; /* Safari 7.0+ */
  display: flex;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;

  flex-direction: column;
}

.c_btn {
  background-color: #00ba7e;
  color:white;
  border-radius: 4px;
  width: 100px;
  height: 20px;

  padding: 5px;

  display: -webkit-flex; /* Safari */
  -webkit-align-items: center; /* Safari 7.0+ */
  display: flex;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;

      margin: 10px 0;
}
