body { margin: 0; overflow:hidden;}
canvas { width: 100%;height:100%; }
#DEBUG{
    position:fixed;
    right:100px;
    color:white;
}
label{
    margin-right:10px;
    color:white;
}
.load-screen{
    position:absolute;
    width:100%;
    height:100%;
    background-color:#bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index:100;
}
@keyframes fade-out {
  0%   {opacity:1;}
  75%  {opacity:0;}
  100% {display:none important!; opacity:0; z-index:-1;}
}
.fadeOut{
    animation-name: fade-out;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}