/* Terminal styling */
html {
    background-color: #002b36;
}

body {
    margin: 0;
    padding: 0;
}

pre {
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: #ffffff;
    cursor: pointer;
}

kbd {
    border: 1px solid;
    padding: 1px;
}

#terminal {
    font-family: 'Fira Code', monospace !important;
    line-height: 1.4;
    max-width: 50em;
}

#notice {
    display: flex;
    align-items: center;

    font-family: 'Fira Code', monospace !important;
    font-size: 14px;
    line-height: 1.4;

    color: #93a1a1;
    background: rgba(255, 255, 255, 0.1);

    height: 3em;
    padding: 0 10px;
}

#notice p {
    text-align: center;
}

#notice a {
    color: inherit;
    text-decoration: underline;
}

div.Terminal div p:last-of-type::before {
    content: attr(data-prompt);
}

ul {
    list-style: none;
    padding-left: 0;
}

.col-2 {
    columns: 2;
}

.col-3 {
    columns: 3;
}

/* Markdown ornaments */

.li:before {
    content: '- ';
    color: #d33682;
}

.em:before, .em:after {
    content: '_';
    color: #6c71c4;
}

.strong:before, .strong:after {
    content: '**';
    color: #6c71c4;
}

.h2:before {
    content: '## ';
    color: #b58900;
}

a .text {
    color: #d33682;
}

a .text:before {
    content: '[';
}

a .text:after {
    content: ']';
}

a .link {
    color: #b58900;
}

a .link:before {
    content: '(';
}

a .link:after {
    content: ')';
}

.blockquote:before {
    content: '> ';
    color: #b58900;
}
