body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    overflow: hidden;
    /* Hide scrollbars */
}

canvas {
    display: block;
}

/* Dat.GUI Overrides */
/* Move Color Picker to the LEFT but ensure overlap to prevent mouseout */
.dg .c .selector {
    position: absolute !important;
    top: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    right: auto !important;

    /* Move it entirely to the left of the container... */
    transform: translateX(-100%);

    /* ...BUT push it back 30px to OVERLAP the button/color box */
    margin-left: 30px !important;

    /* Ensure it floats on top of everything */
    z-index: 9999 !important;

    /* Remove the old border hack */
    border-right: none !important;
}