body {
    background-color: black;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    padding: 20px;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#ascii-art {
    white-space: pre;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 10px;
}

#terminal {
    display: flex;
    align-items: center;
}

#prompt {
    margin-right: 8px;
    color: #ffffff;
}

#input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    outline: none;
    width: 100%;
}

#output {
    margin-top: 20px;
    color: #ffffff;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
