body {
    background: #000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    font-family: 'ProFont', monospace;
    font-size: 1.5rem;
}

.terminal {
    display: flex;
    flex-direction: column;
    background: #000;
    padding: 15px;
    color: #00cc33;
    overflow: auto;
}

.prompt::before {
    content: '$ ';
}

.ascii-container {
    position: relative;
    overflow: hidden;
    max-width: 180px;
}

.ascii-art {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.12);
    transform-origin: top left;
    font-family: monospace;
    font-size: 9px;
    line-height: 9px;
    white-space: pre;
    color: #00cc33;
}

.sys-info {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
    white-space: pre;
    color: #00cc33;
    font-family: 'ProFont', monospace;
}

#output {
    display: flex;
    flex-direction: row;
    transition: opacity 0.5s ease;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    #output {
        flex-direction: column;
    }
}
