* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
    font-family: 'Courier New', monospace;
    font-size: clamp(18px, 1.15vw + 12px, 24px);
    line-height: 1.35;
    padding: 20px;
    color: white;
}

.boot-screen {
    background: black;
    color: white;
    overflow: hidden;
}

.terminal {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    display: none;
}

.output {
    white-space: pre-wrap;
}

.input-line{
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
}

.input-line span{
    flex: 0 0 auto;
    white-space: nowrap;
}

.input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    border: none;
    outline: none;
    background: none;
    color: white;
    font-family: inherit;
    font-size: 1em;
}

.ascii{
    white-space: pre-wrap;
    margin-bottom: 10px;
}

.description{
    margin-bottom: 8px;
}

@media (max-width: 768px){
    body{
        font-size: 16px;
        padding: 16px;
    }
}
