.title {
  text-align: center;
}

.l {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.l0 .panel{
  max-width: 250px;
}

.l1 .panel{
  max-width: 200px;
}

.l2 .panel{
  max-width: 180px;
}

.l3 .panel{
  max-width: 160px;
}

.l .panel {
  align-items: center;
  text-align: center;
  border: 5px solid;
  border-radius: 15px;
  margin: 15px;
  padding: 5px;
  text-decoration: none;
  color: black;
  width: 100%;
}

.l .face {
  margin-bottom: 20px;
}

.l .name {
  font-weight: bold;
  font-size: larger;
  margin-bottom: 3px;
}

.l .icon {
  width: 80%;
  height: auto;
}

.l .message {
  padding: 2px;
  font-size: large;
}

.l .tags {
  display: inline;
}

.l .tags div{
  margin: 5px;
  padding: 2px;
  border-radius: 5px;
  display: inline-block;
  background-color: orange;
  width: fit-content;
  height: fit-content;
  overflow-wrap:normal;
}

.l .panel:hover {
  transform: scale(1.01);
  box-shadow: 1.0px 1.0px 1.0px 1.0px black;
}