body {
    margin: 0;
    padding: 20px;
    background-color: #1e1e1e;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    height: 100vh;
    box-sizing: border-box;
}

h1{
    text-align: center;
}

.location{
    background-color:aqua;
    color: black;
    border-radius:5px;
}

#terminal {
    height: 80%;
    display: flex;
    flex-direction: column;
    max-width: 80%;
    margin: 0 auto;
    border: 2px solid #00ff00;
    padding: 20px;
    background-color: #000;
    overflow: hidden;
}

#output {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#input-line {
    display: flex;
    align-items: center;
    border-top: 1px solid #00ff00;
    padding-top: 10px;
}

.prompt {
    color: #00ff00;
    margin-right: 10px;
    font-weight: bold;
}

#user-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    outline: none;
}

#user-input::placeholder {
    color: #008800;
}

.ascii-art {
    color: #00ff00;
    line-height: 1.2;
    font-size: 12px;
}
