:root {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    --c-color: rgb(203, 207, 211);
    --c-bg: rgb(60, 62, 76);
    --c-code-bg: rgb(40, 42, 53);
}

#rec {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height:32px;
}

#editor { 
    position: absolute;
    top: 32px;
    right: 50%;
    bottom: 32px;
    left: 0;
}

#output > canvas {
    position: absolute;
    top: 32px;
    right: 4px;
    bottom: 32px;
    left: 50%;
    border-radius:6px;
}

#bottom {
    z-index:100;
    position: absolute;
    min-height: 32px;
    height:fit-content;
    right: 0;
    bottom: 0;
    left: 0;
}

.menu {
    position: relative;
    display: inline-block;
}

.menu-dropdown {
    visibility: hidden;
    width: 120px;
    background-color: var(--c-code-bg);
    color: grey;
    text-align: center;
    padding: 4px;
    border-radius: 6px;
    
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    text-align: left;
    width: 200px;
    top: 100%;
    right: 0%;
}

.menu:hover .menu-dropdown {
    visibility: visible;
}