/*! Minimalist Web Notepad | https://github.com/pereorga/minimalist-web-notepad */

body {
    margin: 0;
    background: #ebeef1;
}


#content {
    font-size: 18px;
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    resize: none;
    width: 99%;
    height: 100%;
    min-height: 60%;
    box-sizing: border-box;
    border: 1px #ddd solid;
    outline: none;
}


@media (prefers-color-scheme: dark) {
    body {
        background: #383934;
    }
    #content {
        background: #282923;
        color: #f8f8f2;
        border: 0;
    }
}


