*{
  font-family: 'Ubuntu', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    border: 0;
    overflow: hidden; 
    display: block; 
    
  }
  a-scence {
    min-height: 450px;
    
    width: 100%;
    z-index: 0;
  }
  .chat-bar{
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    top: 0;
  }
  .chat-block{
    display: grid;
    height: 100px;
    width:100px;
    background: rgb(221, 194, 194);
    border-radius: 50px;
    
    align-items: center;
  }
  i{
    align-self: center;
    justify-self: center;
    font-size: 50px;
    color:white
  }
  .a-enter-ar-button, .a-enter-vr-button{
    left:10px;
  }
  .a-enter-ar-button{
    display: hidden;
  }
  #splash {
    position: absolute;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  
    
    
    margin: auto;
  }
   #splash{
    
    background: #000 ;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .loading {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0.25rem solid #181316;
    border-top-color:#4A5967;
    animation: spin 1s infinite linear;
  }
  .splash-message{
    margin: 5%;
    padding: 2.5%;
    border-radius: 5px;
    background-color: #181316;
    color: #00f100;
  }
 
 @-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
 }
 
 @keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
 }
 
 .fade-out {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
     -webkit-animation-duration: 2s;animation-duration: 2s;
    -webkit-animation-fill-mode: both;animation-fill-mode: both;
 }

 @-webkit-keyframes fadeIN {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIN {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fade-in{
  -webkit-animation-name: fadeIN;
  animation-name: fadeIN;
  -webkit-animation-duration: 2s;animation-duration: 2s;
  -webkit-animation-fill-mode: both;animation-fill-mode: both;
}
.hide {
  display: none;
}