body {
  margin: 0;
  background-color: skyblue;
}
.container {
  padding: 32px;
}
.messages {
  margin: 0;
  padding: 0;
  list-style: none;
}
.messages li {
  display: flex;
}
.messages li + li {
  margin-top: 32px;
}
li .right-side {
  flex-direction: row-reverse;
}
.pic img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.text {
  background-color: white;
  border-radius: 8px;
  padding: 16px 24px;
  max-width: 60%;
  /* 要素の最大幅を設定 */
  /* 最大値を指定することで、要素の幅を一定範囲内に収めることができる */
  line-height: 1.8;
}