


html, body {
            margin: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #111;
    padding: 0;
    font-family: "Liberation Mono", monospace;
    font-size: 10px;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
}

#info {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    font-family: monospace;
    background: rgba(0,0,0,0.5);
    padding: 8px;
    border-radius: 4px;
}

/* DIV */
#canvas-container {/* controls positioning, scrolling etc*/
    position: relative; 
    top: 0;
    width: 100%;
    height: 100vh; 
    z-index: 1;
    background-color: rgb(192, 226, 255);
}


/* CANVAS */
#webgl-canvas {/* actual drawing surface for graphics */
    display: block;
    width: 100%;
    height: 100%;
}


/* NAVBAR */
.navbar {
    position: fixed;

    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 10px;

    z-index: 9;
}

/* BUTTON */
.btn {
    position: relative;
    font-family: "Liberation Mono", monospace;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12;
    z-index: 10;
}

/* BUTTON */
.wave-set {
    display: none; /* Hidden by default */
}
