* {
    position: relative;
}
:root {
    
}
html {
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    background-color: #191919;
    color: #ff8c00;
    display: grid;
    font-family: 'Space Mono', monospace;
    margin: 0;
    padding: 0;
    grid-template-columns: auto;
    grid-template-rows: auto 40px;
    grid-template-areas: "output"
        "input";
    height: 100%;
}
*::-moz-selection {
    background-color: #ff8c00;
    color: #191919;
}
*::selection {
    background-color: #ff8c00;
    color: #191919;
}
section#output {
    display: block;
    grid-area: output;
    overflow-y: auto;
    scroll-behavior: smooth;
}
section#output div.container {
    display: block;
}
#output div.container div.messages {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
}
#output div.messages div.message {
    box-sizing: border-box;
    display: block;
    padding: 8px;
}
#output div.messages div.input {
    color: #7fffd4;
}
#output div.messages div.input::-moz-selection {
    background-color: #7fffd4;
    color: #000000;
}
#output div.messages div.input::selection {
    background-color: #7fffd4;
    color: #000000;
}
#output div.messages div.message pre {
    max-width: 100%;
    overflow-x: auto;
}
#output div.messages div.message img {
    max-height: 250px;
    max-width: 100%;
}
#output div.messages div.message img,
#output div.messages div.message img.picsum {
    height: 250px;
    max-width: 100%;
    width: 350px;
}
#output div.messages div.message ul {
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 1em;
}
#output div.messages div.message ul li:before {
    color: #bdd0d6;
    content: "*";
    display: inline-block;
    margin-left: -1em;
    width: 1em;
}
section#input {
    
}
input {
    background-color: #000000;
    border: none;
    box-sizing: border-box;
    color: #7fffd4;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    padding: 8px;
    width: 100%;
    grid-area: input;
}
input:focus {
    border: none;
    box-shadow: none;
    outline: none;
}
input::-moz-selection {
    background-color: #7fffd4;
    color: #000000;
}
input::selection {
    background-color: #7fffd4;
    color: #000000;
}