html,
body {
  height: 100%;
}

body {
  color:#000;
  background-color: #f5f5f5;
}

main {
  /*display: flex;
  align-items: center;*/
  width: 100%;
  height:calc(100% - 60px);
  max-width: 500px;
  padding: 15px;
  margin: auto;
}

main h1 {
    width:100%;
    text-align: center;
}

#conversations {
    width: 100%;
    background-color: #FFFFFF;
    height: 400px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    list-style:none;
    margin:0;
    padding:0;
    text-align:left;
    border-bottom:none;
}

#conversations li {
    padding: 8px;
    font-size: .75em;
    line-height: 1.5;
}

li.myConversations {
    text-align:right;
}

#chatform {
    padding-bottom: 12px;
}
 #chatform input#nickname {
  border-top-left-radius: 0;
}

.avatar {
    width: 34px;
    height: auto;
}



