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

html, body {
    height: 100%;
}
body {
    margin: 0;
    overscroll-behavior: none;
    background: #ebeef1;
}
.container {
    position: fixed;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
}
#content {
    font-size: 100%;
    margin: 0;
    overscroll-behavior: none;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    overflow-y: auto;
    resize: none;
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    overscroll-behavior: none;
}
#printable {
    display: none;
}

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

@media print {
    .container {
        display: none;
    }
    #printable {
        display: block;
        white-space: pre-wrap;
        word-break: break-word;
    }
}




/* Custom font styling */
@font-face {
    font-family: 'WebSFPro';
    src: url('https://raw.githubusercontent.com/HelloWorldWinning/vps/main/folder_font_test/SF_Pro/SF-Pro.ttf') format('truetype');
    font-display: swap;
}

body * {
    font-family: -apple-system, BlinkMacSystemFont, "WebSFPro", sans-serif !important;
    font-weight: 300 ;
    text-align: justify !important;
    line-height: 140% !important;
}




