#board{
    display: flex;
    max-width: 1100px;
    margin: 30px auto;
    background: #ffffff;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    max-height: 700px;
}

#board>div:nth-child(1), #board>div:nth-child(2){
    width: 48%;
}

#board>div:nth-child(1) {
    width: 48%;
    height: 700px;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 5%), 0 0 50px 1px rgb(0 0 0 / 15%);
    padding: 20px;
    box-sizing: border-box !important;
}
#board>div:nth-child(1) >div {
    overflow: auto;
    height: 700px;
    max-height: 100%;
}

code[class*=language]{
    height: 700px;
    max-height: 680px;
    margin: 0;
    padding-top: 10px;
}

#editor{
    width: 100%;
    min-height: 660px;
}
