body {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-family: roboto;
  background: #00F260;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #0575E6, #00F260);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #0575E6, #00F260); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* #message-container {
  width: 80%;
  max-width: 1200px;
} */

#message-container div {
  background-color: #CCC;
  padding: 5px;
}

#message-container div:nth-child(2n) {
  background-color: #FFF;
}

.send-class {
  bottom: 30px;
  background-color: white;
  display: flex;
}

#message-input {
  flex-grow: 1;
}

#user-container {
  position: sticky;
  top: 0;
  right: 0;
}