body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: Monospace;
    font-size: 14px;
    line-height: 16px;
}

a {
    color: #ff0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    cursor: pointer;
    text-transform: uppercase;
}

canvas {
    display: block;
}

#info {

    position: absolute;
    top: 0px;
    width: 20%;
    padding: 10px;
    box-sizing: border-box;
    text-align: left;
    z-index: 1; /* TODO Solve this in HTML */
}

.dg.ac {
    z-index: 2 !important; /* TODO Solve this in HTML */
}
canvas {
    width:100%;
    height:100%;
}

#current{
    position:absolute;
    top:0;
    left:0;
    width:20%;
    /*line-height: 10px;
    font-size:14px; */
}

#switchCont{
    display:none;
}

#current button {
    background: white;
    pointer-events: all;

}
#cont {
    margin: 260px auto;
    overflow: hidden;
    line-height: 20px;
    width: 400px;
    text-align: left;
}

#cont.closed{
    height:0;
    padding:0;
}

#closeGui {
    pointer-events: all;
    color:white;
    display:none;
    background: black;
    padding:10px;

}

@media screen and (max-width: 576px) {
    #current{
    /*    line-height: 12px;
        font-size:12px; */

    }

    #closeGui {
        display: flex;
        justify-content: center;
    }
  }
