content {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: var(--content);
}

#codeEditor {
    width: 100%;
    height: 100%;

    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;

    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-editor);
    padding: 55px 10px 10px 10px;
    box-sizing: border-box;
    resize: none;
    outline: none;

    transition: 0.2s ease-out;
}

@media (max-width:780px) {
    #codeEditor {
        height: 100%;
        padding-top: 70px;
    }
}

#codeEditor:focus {
    background-color: var(--bg-editor-focus);
}