html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
}

canvas {
    position: absolute;
    background: #000000;
    width: 100%;
    height: 100%;
}

#consolelog{
    position:absolute;
    z-index: 1000;
    width: 400px;
    height: 100%;
    right: 0px;
    top: 0px;
    padding: 0.2rem;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 1.2rem;
    font-family: 'Courier New', Courier, monospace;
    background: rgba(255, 255, 255, 0.4);
}