h1,
h2,
h3,
h4 {
    display: inline;
    margin-top: 0;
    margin-bottom: 0;
}

heading {
    display: block;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 12px;
}

subheading {
    display: block;
    margin-bottom: 24px;
}

p {
    margin-top: 0;
}

.command {
    color: var(--focus_color);
    text-decoration: none;
    margin-bottom: 0;
    line-height: 24px;
}

/* Terminal Output */
#terminal_output {
    font-size: var(--font_size);
    white-space: pre-wrap;
    hyphens: auto;
    overflow-x: hidden;
    overflow-y: hidden;

    u {
        border-bottom: 0.19rem solid #fff;
        text-decoration: none;
    }

    q {
        font-size: calc(var(--font_size) - 4px);
        color: rgb(255 255 255 / 0.8);
    }

    mark {
        background: var(--focus_color);
        color: var(--main_color);
        hyphens: none;
    }

    h1 {
        font-size: calc(var(--font_size) + 6px);
    }
    h2 {
        font-size: calc(var(--font_size) + 4px);
    }

    code {
        display: inline;
        font-family: monospace;
        font-size: calc(var(--font_size) - 2px);
        font-weight: 600;
        font-style: oblique;
    }
    code[block] {
        white-space: pre;
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        outline: dotted;
        padding-block: 0.5rem;
        font-style: normal;
    }
    code[wrap] {
        display: inline;
        word-wrap: break-word;
        line-break: auto;
        font-style: normal;
    }

    less {
        display: inline-block;
        white-space: pre;
    }

    @media screen and (max-width: 450px) {
        less {
            visibility: hidden;
            display: none;
        }
    }
}
