* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -35px; /* the bottom margin is the negative value of the footer's height */
    background-color: #808080;
}
.push {
    height: 30px; /* .push must be the same height as .footer */
}

.footer {
    padding: 5px;
    height: 26px;
    /*background-color: rgba(212, 229, 251, 0.5);*/
}

.chat-log {
    position: absolute;
    bottom: 35px;
    font-family: 'Share Tech Mono', monospace;
    top: 5px;
    right: 5px;
    left: 5px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #252525;
}

.empty {
    flex: 1;
}

.chat-message {
    margin: 2px 5px;
}

input.chat-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    text-rendering: auto;
    color: initial;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    margin: 0em;
    font: 11px system-ui;
    width: 100%;
    height: 26px;
    border: 1px solid rgb(238, 238, 238);
    border-radius: 0;
    font-family: 'Share Tech Mono', monospace;
}