.about-container {
  display: block;
  width: 700px;
  max-width: 100vw;
  margin: 0 auto;
}
.about-container span {
  font-size: 20px;
}
.about-container h1 {
  font-size: 34px;
}
.about-container h3 {
  font-size: 24px;
}
.about-container .employee-list {
  margin: 32px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.about-container .employee-list .entry {
  display: flex;
  flex-direction: column;
  margin-right: 24px;
  margin-top: 12px;
  align-items: flex-start;
}
.about-container .employee-list .entry img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}
.about-container .employee-list .entry .name {
  font-weight: 600;
  margin-top: 12px;
  margin-left: 4px;
}
.about-container .employee-list .entry .title {
  color: rgba(32, 32, 32, 0.8);
  margin-left: 4px;
  font-size: 18px;
}

@media (max-width: 600px) {
  .about-container .employee-list .entry {
    margin-right: 8px;
  }
}