

body {
    margin: 0;
    padding: 0;
    font-family: "Liberation Mono", monospace;
    font-size: 10px;
}


/* 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 */
}