.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card {
  display: flex;
  flex-grow: 1;
  background-color: var(--logy-lightblue);
  border-radius: 15px;
  flex-basis: 250px;
  min-height: 15px;
  padding: 10px;
  flex-direction: column;
}

.card h2, .card p {
  padding: 0;
  margin: 0;
  margin-bottom: auto;
}

meter {
  width: 100%;
  height: 30px;
  margin-top: auto;
}

.progress {
  height: 30px;
  border-radius: 15px;
  display: flex;
}

.progress > p {
  margin-left: 10px;
  margin-top: 4px;
  margin-bottom: 3px;
}

.Great {
  background-color: green;
  color: white;
}

.Good {
  background-color: lightgreen;
  color: black;
}

.Fair {
  background-color: yellow;
  color: black;
}

.Poor {
  background-color: red;
  color: white;
}

.Bad {
  background-color: black;
  color: white;
}
