/* Body */
body {
    margin: 0;
    background: #0d0f12;
    font-family: 'Courier New', Courier, monospace;
    color: #20a20e;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding: 20px 0;
    box-sizing: border-box;
}

button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300;
    height: 60;
    background: #000;
    color: #20a20e;
    border: 2px solid #20a20e;
    font-size: 30px;
    font-family: 'Courier New', monospace;
    font-weight:500;
}

/* Terminal Container */
#console {
    width: 90%;
    max-width: 900px;
    height: 60vh;
    min-height: 250px;
    background: #0b0d10;
    border: 2px solid #2f2f2f;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    padding: 15px;
    overflow-y: auto;
    white-space: pre-wrap;
    margin-bottom: 5px;
}

/* Input Style */
#input {
    width: 90%;
    max-width: 900px;
    background: #0b0d10;
    border: none;
    border-top: 2px solid #2f2f2f;
    padding: 15px;
    color: #20a20e;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    outline: none;
}

/* Fake cursor effect */
#input::placeholder {
    color: #20a20e;
}

/* Scrollbar */
#console::-webkit-scrollbar {
    width: 10px;
}

#console::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}

/* Responsive for mobile / iPad */
@media (max-width: 600px) {
    #console {
        height: 55vh;
    }

    #input {
        padding: 12px;
        font-size: 14px;
    }
}