body {
  --rows: 41;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.stagger-visualizer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: calc(var(--rows) * 1rem);
  height: calc(var(--rows) * 1rem);
}

.stagger-visualizer .dot {
  position: relative;
  width: .25rem;
  height: .25rem;
  margin: .375rem;
  background-color: currentColor;
  border-radius: 50%;
}

.stagger-visualizer .cursor {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: currentColor;
  border-radius: 50%;
}