  html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    display: flex;
  }

  /* svg#network {
    width: 100vw;
    height: 100vh;
  } */

.node circle {
  fill: white;
  stroke: purple;
  stroke-width: 1.5px;
}

.node text {
  fill: purple;
  font-weight: bold;
  font-size: 0.8em;
  pointer-events: none;
  text-anchor: middle;
  dominant-baseline: middle;
}

.link {
  stroke: purple;
  stroke-width: 2px;
  stroke-dasharray: 3 2;
  opacity: 0.7;
  filter: url(#sketchy);
}
