body {
    background-color: #000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#screen {
    background-color: #000;
    border: 5px solid #888800;
    padding: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0px 0px 15px #00FF00;
}

#output {
    color: #00FF00;
    font-family: "Courier New", monospace;
    font-size: 12px;
    white-space: pre-wrap;
    line-height: 1.2;
    overflow: hidden;
    height: 400px; /* Adjust the height as needed */
    overflow-y: auto;
}
