div#testmenu
div.console {
    display: flex;
    flex: 1;

    justify-self: center;
    align-self: center;

    width: 100%;
    height: 100%;

    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 5px;

    flex-direction: column;

    overflow-y: auto;
    scrollbar-color: var(--secondary-color) rgba(0, 0, 0, 0);
    scrollbar-width: thin;
}

div.console p {
    overflow-y: auto;
}

#output {
    display: flex;
    flex-direction: column;
    padding-left: 2%;
    padding-right: 2%;
    flex-grow: 1;
    height: 0px;
}


.user_input {
    text-align: right;
}