main {
  min-height: 88vh;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.progressBar {
  min-height: 20px;
  /* padding: 4px; */
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  align-items: center;

  /* grid: repeat(1, 20px) / auto-flow; */
}

.progressCell {
  height: 16px;
  background-color: #c4c4c4;
  justify-content: center;
  display: flex;
}