html, body, button, select {
    font-family: 'Roboto Mono', monospace;
    color: black;
}

#runBtn {
    background-color: #ff4b55;
    color: white;
    border: 2px;
    margin-bottom: 3px;
    display: inline-block;
    border-radius: 9999px;
    padding: 15px 20px;
    float: right;
    margin-right: 10px;
}

#demoSelector {
    background-color: #ff4b55;
    color: white;
    border: 2px;
    margin-bottom: 3px;
    display: inline-block;
    border-radius: 9999px;
    padding: 15px 20px;
    border-right: 7px solid transparent;
    margin-left: 10px;
}

#editor {
    width: 65%;
    height: calc(100% - 65px);
    left: 0;
    position: fixed;
    border-right: 2px solid grey;
    border-top: 2px solid grey;
}

@media only screen and (max-width: 768px) {

    #editor {
        width: 100% !important;
        height: 70% !important;
        position: relative !important;
    }

    #output {
        width: 100% !important;
        height: 29% !important;
        position: relative !important;
    }

    .output {
        font-size: 13px !important;
    }


    #runBtn {
        width: 100px;
        font-size: 11px;
    }

    #demoSelector {
        width: 108px;
        font-size: 11px;
    }
}

#output {
    width: calc(35% - 4px);
    height: calc(100% - 65px);
    right: 0;
    position: fixed;
    border-right: 2px solid grey;
    border-top: 2px solid grey;
    overflow-y: scroll;
}

.output {
    margin: 1px 10px;
    padding-top: 0;
    font-size: 15px;
}

* {
    margin: 0;
    padding: 0;
}

#container {
    height: auto;
    width: 100%;
    font-size: 0;
    margin-bottom: 7px;
    margin-top: 7px;
}

#left,
#middle,
#right {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    font-size: 12px;
}

#left {
    width: 25%;
}

#middle {
    width: 50%;
    text-align: center;
    display: inline-block;
}

#middle img {
  user-select: none;
  -webkit-user-drag: none;
}

#right {
    width: 25%;
    text-align: center;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    height: 55%
}
