:root {
    --color-background: #000;
    --color-text: #fff;
    --color-highlight: #4AF626;
    --color-error: #f00;
    --color-user: #27a30e;
    --color-root: #772cd8;
    --color-file: #27a30e;
    --color-dir: #772cd8;
    --color-info: #00aeff;
    --color-warning: #ff0;
}

* {
    box-sizing: border-box;
    cursor: url(../cursors/arrow.cur), pointer;
}

html {
    height: 100%;
    width: 100%;
}

body {
    background-color: var(--color-background);
    margin: 0;
    width: 100%;
    height: 100%;
}

label {
    width: 100vw;
    height: 100vh;
}

.terminal-main {
    color: var(--color-text);
    font-family: "jersey15", sans-serif;
    padding: 20px;
    font-size: 24px;
    width: 100%;
}

#command-line {
    display: flex;
    align-items: center;
    margin-right: 20px;
    background-color: var(--color-background);
    gap: 10px;
}

.path,
#path {
    color: var(--color-highlight);
    font-family: 'jersey15', sans-serif;
    font-style: normal;
}

#commandInput {
    background-color: var(--color-background);
    border: none;
    color: var(--color-text);
    font-family: 'jersey15', sans-serif;
    font-style: normal;
    font-size: 24px;
    padding: 0;
    margin: 0;
    caret-color: var(--color-highlight);
    outline: none;
    cursor: url(../cursors/ibeam.cur), auto;
    flex-grow: 1;
}

.output {
    color: var(--color-highlight);
}

.error {
    color: var(--color-error);
}

.user {
    color: var(--color-user);
}

.root {
    color: var(--color-root);
}

.dir {
    color: var(--color-dir);
}

.file {
    color: var(--color-file);
}

.cmd {
    color: var(--color-user);
}

.desc {
    color: var(--color-dir);
}

.startup {
    color: var(--color-text);
    margin-left: 2em;
}

.startupError {
    color: var(--color-error);
    margin-left: 2em;
}

.startupWarning {
    color: var(--color-warning);
    margin-left: 2em;
}

.info {
    color: var(--color-info);
}

.warning {
    color: var(--color-warning);
}

.line {
    color: var(--color-text);
    margin-left: 0;
}

.jea {
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 100% 100%;
}

.stone {
    background: slategray;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 100% 100%;
}

.tigo {
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, orchid, violet);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 100% 100%;
}

w {
    color: var(--color-text);
}

a {
    color: var(--d);
    cursor: url(../cursors/hand.png), auto;
}

ggm {
    background: linear-gradient(90deg, rgba(42, 169, 219, 1) 0%, rgba(226, 112, 255, 1) 25%, rgba(158, 255, 160, 1) 40%, rgba(255, 171, 69, 1) 50%, rgba(255, 0, 0, 1) 70%, rgba(159, 94, 255, 1) 85%, rgba(237, 83, 181, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 100% 100%;
}

spf {
    background: linear-gradient(90deg,rgba(94, 140, 255, 1) 12%, rgba(237, 83, 83, 1) 50%, rgba(165, 83, 237, 1) 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 100% 100%;
}

games-menno {
    color: #1e89bb;
}

@font-face {
    font-family: "jersey15";
    src: url(../fonts/jersey15-regular.ttf);
}

.nano-editor {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 40px);
    background-color: #000;
    color: #fff;
    font-family: monospace;
}

.nano-header {
    background-color: #2e3436;
    color: #fff;
    padding: 4px 8px;
    text-align: center;
    font-weight: bold;
}

.nano-textarea {
    flex: 1;
    background-color: #000;
    color: #fff;
    border: none;
    outline: none;
    padding: 8px;
    font-family: monospace;
    font-size: 14px;
    resize: none;
    overflow-y: auto;
}

.nano-footer {
    background-color: #2e3436;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    white-space: pre;
}

.nano-status {
    background-color: #2e3436;
    color: #fff;
    padding: 4px 8px;
    text-align: center;
}

.nano-prompt {
    background-color: #2e3436;
    color: #fff;
    padding: 8px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #555;
    line-height: 1.6;
}

.nano-prompt .key {
    color: #aaa;
    font-weight: bold;
}