.header {
    background: #2a5a81;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 4px;
    font-family: sans-serif;
}

.control-panel {
    background: lightgray;
    text-align: right;
    padding: 4px;
    font-family: sans-serif;
}

.languages {
    background: white;
    border: 1px solid gray;
}
.main {height:100%}
#editor { height: 60%; width: 100%;}
.output {
    padding: 4px;
    border: 2px solid gray;
    /* min-height: 100px; */
    height: 32%;
    width: 100%;
    resize: none;
    overflow: auto;
}
.button-container {
    text-align: right;
    padding: 4px;
    height: 8%;
    position: relative;
}
#my-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80%;
}

.btn {
    background: #2a5a81;
    color: white;
    padding: 8px;
    border: 0;
}
#open-editor-btn {
    margin-bottom: 5px;
}


.block-btn {
    width: 100%;
}
.resize-me {
    margin-right: 52%;
    transition: all 0.3s ease;
}
.scroll-up-btn.move-over {
    right: 51vw
}
@media only screen and (max-width: 600px) {
    .button-container {
        height: 15%;
    }
    #my-btn {
        bottom: 20px;
    }
    .output {
        height: 25%;
    }
    .resize-me {
        margin-right: auto;
    }
    .scroll-up-btn.move-over {
        right: 0;
        bottom: 50;
    }
}
