html {
    background-color: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    width: 100vw;
}

body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

button{
    border: solid 1px #0060ff ;
    color: #000;
    padding: 5px;
    border-radius: 50px;
}
button:hover{
    color: #fff;
    background: #0060ff;
}

a{
    color: #0060ff;
    font-family: monospace;
    text-decoration: none;
}

canvas {
    display: block;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

canvas:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.interface {
    z-index: 5;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 20%;
    background-color: #ffffff16;
    padding: 1%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-right: dashed 5px #ffffff51;

}
