#messages{
    padding-bottom: 30%;
}

li.receive {
    list-style-type: none;
    margin-bottom: 10px;
    background-color: #2b689c;
    padding: 5px;
    border-radius: 10px;
    color: white;
    width: 100%;
}

li span.receive {
    font-style: italic;
    font-weight: bolder;
    color: #b5b0b9;
}

#chat {
    width: 80%;
    margin: auto;
}

#message-form {
    text-align: center;
    /* position: fixed; */
    left: 0;
    bottom: 0;
    width: 100%;
    /* background-color: #b7b5b9; */
}

input {
    width: 70%;
    height: 30px;
}

button {
    width: 25%;
    height: 38px;
}

.sent {
    text-align: right;
    background-color: #a79cb3;
    margin-left: 50%;
}

.sent span {
    margin-left: 5px;
    color: #2b689c;
}

.receive {
    width: 100%;
    text-align: left;
}

#message-input {
    height: 100%;
    width: 100%;
   -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;  
}