body{
	background-color: #222;
}

/* chat project*/
div.chat-log{
  max-width: 25em;
  margin: 0 auto;
}
div.chat-log:after{
	clear: auto;
  display: table;
}

div.left-bubble, div.right-bubble{
  clear: both;
  padding: 1em;
  margin-top: 1em;
  & p{
    color: white;
  }
}

div.left-bubble{
 	background-color: #22a;
  float: left;
  border-radius: 1em 1em 1em 0;
}

div.right-bubble{
  background-color: #2a2;
  float: right;
  border-radius: 1em 1em 0 1em;
}

.chat-header{
	background: linear-gradient(90deg, #aaa, #fff, #fff, #aaa);
  text-align: center;
  display: flex;
  justify-content: end;
  flex-direction: column-reverse;
  min-height: 10em;
}

/* Clearfix */
.clearfix{
  clear: both;
  display: table;
}