* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
    background: #050505;
    color: #cdd3d8;
    font-family: "Cascadia Code", "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body {
    overflow: hidden;
}

#terminal {
    width: 100%;
    height: 100vh;
    padding: 30px;
    overflow-y: auto;
    cursor: text;
}

#terminal::-webkit-scrollbar {
    width: 10px;
}

#terminal::-webkit-scrollbar-thumb {
    background: #1e2022;
    border-radius: 5px;
}

#terminal::-webkit-scrollbar-track {
    background: transparent;
}

#output {
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 15px;
}

#output > div:empty {
    min-height: 1.5em;
}

#input-line {
    display: flex;
    font-size: 16px;
    line-height: 1.5;
}

#prompt {
    margin-right: 10px;
    color: #6dbb84;
}

#command {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: #cdd3d8;
    caret-color: #cdd3d8;
    font-family: inherit;
    font-size: 16px;
}
