body {
    background-color: black;
    color: lime;
    font-family: "Courier New", monospace;
    text-align: center;
}

#crt-screen {
    width: 800px; /* Increased width to fit the ASCII art */
    min-height: 500px; /* Increased height to prevent cutoff */
    margin: auto;
    border: 4px solid lime;
    padding: 20px;
    box-shadow: 0px 0px 10px lime;
    background: black;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures content is centered */
}

pre {
    color: yellow;
    text-align: center;
    font-family: "Courier New", monospace;
    white-space: pre; /* Keeps ASCII spacing correct */
}

#menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu {
    color: red;
    text-align: center;
    font-family: "Courier New", monospace;
    white-space: pre; /* Prevents menu items from breaking */
}

#main-menu-title {
    text-align: center;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#terminal {
    width: 90%;
    padding: 10px;
    background: black;
}

#command-input {
    width: 100%;
    background: black;
    border: none;
    color: lime;
    font-size: 16px;
    outline: none;
    font-family: "Courier New", monospace;
}

#command-input::placeholder {
    color: green;
}
