body {
    background-color: #000000;
    color: #e3b1d2; /* yeşil yaptım */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
}

/* satırlar tam alt alta dursun diye */
.line {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Giriş satırı yan yana */
.input-area {
    display: flex;
    align-items: center;
}

.prompt {
    margin-right: 10px;
    white-space: nowrap;
}

/* Yazı yazdığımız kutu şeffaf ve çizgisiz */
#user-input {
    background: transparent;
    border: none;
    color: #00FF41;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    width: 100%;
}