#blog-container {
    margin: 5px;
    display: flex;
    justify-content: space-around;
}

#editor {
    background-color: lightblue;
    width: 48vw;
    height: 90vh;
}

#blog-text {
    /*background-color: lightgreen;*/
    /*overflow: scroll;*/
    /*padding:  5px 25px;*/
    /*width: 50vw;*/
    /*height: 90vh;*/
}
#blog-text img {
    width: 100%;
    border-radius: 20px;
}

table, th, td {
    border: 1px solid black;
}

code, pre {
    background-color: white;
}

@media (max-width: 940px) {
    #container {
        flex-direction: column;
    }
    #editor, #preview {
        width: 95vw;
        height: 48vh;
    }
}
