.card {
  padding: 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-around;
  align-items: stretch;
  text-align: center;
  width: 400px;
  max-width: 400px;
}
.card-title {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.card-title p {
  font-size: 16px;
  line-height: 1.1em;
  font-weight: 400;
  margin-bottom: 10px;
}
.section {
  display: flex;
  flex-flow: row wrap;
  gap: 5px;
  justify-content: space-around;
}
.section p {
    font-size: 14px;
}
.footer {
  display: flex;
  justify-content: flex-end;
  font-size: x-small;
}

@media (max-width: 600px) {
  .section {
    display: flex;
    flex-flow: column wrap;
  }
}
