.sets {
  padding: 0.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 0.5em;
}

.sets a {
  display: block;
  box-sizing: border-box;
  width: 19em;
  min-height: 9em;
  padding: 0.5em;
  background: var(--CyPaper);
  color: var(--CyText);
  border: 1px solid var(--CyPaperEdge);
  border-radius: 0.5em;
}

.sets a:hover {
  background:   var(--CyHover);
  color:        var(--CyHoverText);
  border-color: var(--CyHoverEdge);
}

.sets a:active {
  background:   var(--CyActive);
  color:        var(--CyActiveText);
  border-color: var(--CyActiveEdge);
}

.sets h2 {
  margin-top: 0;
}

.set {
  display: none;
}

#flexViewView .flexViewContent {
  width: fit-content;
  height: fit-content;
  font-size: 150%;
}

#flexViewIndex .flexViewContent {
  width: fit-content;
  height: fit-content;
  font-size: 50%;
  top: 0;
  translate: -50% 0;
}