html {
    background: black;
    color: #00ff66;
    font-family: monospace;
    font-size: clamp(10px, 1.4vw, 14px);
    width: 800px;
}

body {
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
    min-width: 80ch;
    width: max-content;
}

#art {
    white-space: pre;
    overflow-x: auto;
    line-height: 1.1;
    min-height: 32lh;
    min-width: 80ch;
    width: max-content;
}

.bars {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: min(100%, 60ch);
}

#tempbar,
#humbar {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.cursor {
    display: inline-block;
    width: 1ch;
    height: 1lh;
    background: #00ff66;
    animation: blink 1s steps(1) infinite;
    vertical-align: text-bottom;
}
