body {
    margin: 0;
    padding: 15px;
    background-color: #1e1e1e;
    background-image: url('background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    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: none; /* hidden until the Start thing is pressed */
    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;
}

/* styles */
#start-screen{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start; /* put it at the top */
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    padding-top: 12px;
}
#start-box{
    background: rgba(7,17,7,0.85); /* slightly transparent so the background image thingy shows through */
    border: 2px solid #00ff00;
    padding: 12px 20px;
    text-align: left;
    color: #e8ffe8;
    font-family: 'Courier New', monospace;
    max-width: 720px;
}
#start-btn{
    margin-top: 12px;
    padding: 10px 20px;
    background: #00ff00;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.title-art{
    color: #ccffcc;
    font-family: 'Courier New', 'Lucida Console', 'DejaVu Sans Mono', Monaco, monospace;
    font-style: normal; /* avoid any italicization */
    font-weight: 700; /* make blocks solid */
    font-size: 13px;
    line-height: 1; /* one line per ASCII row */
    letter-spacing: 0; /* keep ascii aligned */
    margin: 6px 0 10px 0;
    white-space: pre; /* preserve stuff */
    display: block;
}
#start-btn:hover{ opacity: 0.9; }