
body{
    font-family: "helvetica";
    font-weight: bolder;
    background-color: black;
}

.game {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    background: #c9ccdb;
    box-sizing: border-box;
}


.webgl { 
    display: block; 
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    z-index: 0;
}


#debugLog{
    position: fixed;
    top: 0;
    left: 0;
    color: white;
    font-size: 1em;
    pointer-events:none;
    height: 400px;
    width: 300px;
    background-color: black;
    opacity: 0.5;
}

#debugLog2{
    position: fixed;
    top: 0;
    left: 400px;
    color: white;
    font-size: 1em;
    pointer-events:none;
    height: 120;
    width: 300px;
    background-color: black;
    opacity: 0.85;
}



* { margin:0; padding:0; } /* to remove the top and left whitespace */

html, body { width:100%; height:100%; } /* just to be sure these are full screen*/
body {
  background: #000 ;
  overflow: hidden;

   /* remove scrollbars */
   -ms-overflow-style: none;
   scrollbar-width: none;
   user-select: none;
 
   /* make text unselectable */
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
 
   overscroll-behavior: none;
   touch-action: none;
}
canvas { display:block} /* To remove the scrollbars */