.computer_box {
    display: grid; 
    background: #0a0a0a;
    max-width: 90vw;
    padding: 0.5em;
    gap: 0.5em;
    align-items: top;
    overflow: visible;
    width: calc(100% - 2em);
    margin: auto;
}
.computer_body {
    font-family: "IBM VGA", monospace;
    -webkit-font-smoothing: none;
    color: #dadada;
    font-size: 18px;
}
.window_title {
    background: linear-gradient(to right, #003, #04f); 
    /* background: linear-gradient(to right, #400, #f00);  */
    color: #fff;
    width: calc(100% - 8px); 
    padding: 4px; 
    display: grid; 
    grid-template-columns: 1fr repeat(3,20px);
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    border: #000 solid 1px;
    right: -1px;
}
.window_title div {
    overflow:hidden; 
    white-space:nowrap; 
    text-overflow: ellipsis;
}
.window_box {
    background: #b4b4b4;
    width: 40em;
    max-width: calc(90vw + 1.5em);
    margin: auto;
    padding-bottom: 8px;
    margin-bottom: 1em;
    filter: drop-shadow(4px 8px 2px #000000ee);
}
.computer_bold {
    background-color: #000;
    color: #ff0;
}
.computer_body b {
    background-color: #000;
    color: #0f0;
}