@import url('https://cdn.jsdelivr.net/npm/segoe-fonts@1.0.1/segoe-fonts.min.css');

body {
    margin: 0;
    background: #ebeef1;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
}

#content {
    font-family: inherit;
    font-size: 20px;
    color: #0E1830;
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    resize: none;
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    border: 1px #ddd solid;
    border-radius: 20px;
    outline: none;
}

#printable {
    display: none;
}

@media (prefers-color-scheme: dark) {
    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;
    }
}