html, body {
    background-color: #000014;
    overflow: hidden;
    touch-action: none;
    margin: 0;
    padding: 0;
    border: 0;
}

#msgDiv {
    overflow-y: scroll;
    overflow-x: hidden;
    top: 0;
    width: 100%;
    position: absolute;
    height: calc(100vh - 40px);
    z-index: 99;
}
#msg {
    color: whitesmoke;
    font-size: large;
}

#server {
    color: yellow;
}

#user {
    color: aqua;
}

#bg {
    background-color: #000014;
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    z-index: 100;
}

#clientName {
    background-color: #000014;
    border: 1px solid white;
    z-index: 101;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: whitesmoke;
}   

#msgBox {
    background-color: #000014;
    border: 1px solid white;
    position: absolute;
    bottom: 0px;
    width: calc(100vh - 1px);
    color: whitesmoke;
}