.icon {
  padding: 0.5rem;
}
.row {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
}
.row.reverse {
  flex-direction: row-reverse;
}
.row.wrap {
  flex-wrap: wrap;
}
.row.center {
  justify-content: center;
}
.row.stretch {
  justify-content: stretch;
}
footer {
  white-space: nowrap;
  padding: 1rem var(--margin);
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer-main {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
