body{
    margin: 0px;
}
.container{
    border: solid 1px black;
    border-bottom: none;
    width: 70vw;
    margin-left: auto;
    margin-right: auto;
    height: 90vh;
    position: relative;
}
.inputContainer{
    background-color: rgb(0, 0, 0);
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    height: 30px;
}
.messageInput{
    margin: 0px;
    padding: 0px;
    width: 100%;
}
.extraInfoContainer{
    width: 70vw;
    margin-left: auto;
    margin-right: auto;
    height: 3vh;
    display: flex;
    justify-content: space-between;
    font-family: arial;
    font-size: small;
}
#messagesContainer{
    height: 86vh;
    overflow-y: auto;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column-reverse;
}