body {
  background-color: #93d7dc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: #c4c57e;
  border-radius: 30px;
  width: 300px;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.user {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fbf8f8;
  padding: 10px 0;
}

.avatar {
  background-color: #b5b78c;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.name {
  font-weight: bold;
  font-size: 1.1em;
  color: #3a3a00;
  margin-left: 10px;
}
.description {
  font-size: 0.9em;
  color: #545000;
  margin-top: 4px;

}
