body {
    background-color: black;
    color: rgb(6, 139, 6);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.console {
    border: 2px solid rgb(6, 139, 6);
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

.screen {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.console-text {
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

input, button {
    background-color: black;
    color: green;
    border: 1px solid rgb(6, 139, 6);
    padding: 5px;
    margin: 5px 0;
    font-family: 'Courier New', Courier, monospace;
}

input:focus, button:focus {
    outline: none;
}

button:hover {
    cursor: pointer;
}

.error-message {
    color: red;
}


.wl {
   margin-bottom: auto;


}