

@font-face {
  font-family: myfont;
  src: url(/assets/slkscr.ttf) format('truetype');
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1220;
}

body {
  font-family: myfont;
  font-weight: 300;
}

#graph-container {
  width: 100vw;
  height: 100vh;
  display: block;
}

#graph-container svg {
  display: block;
  width: 100%;
  height: 100%;
}

#col {
  width: 100%;
  height: 100%;
  color: white;
}

text {
  stroke-width: 0.09;
  stroke: white;
  fill: white;
  font-family: myfont;
  font-size: 12px;
}

.node {
  color: white;
  stroke-width: 1.0px;
}

.link {
  stroke: #555;
  stroke-opacity: 0.6;
}
text{
  stroke-width: 0.09;
  stroke: white;
  fill: white;
}
.node {
  color: white;
  stroke-width: 1.0px;
  fill: white;
}


.link {
  stroke: #555;
  stroke-width: 1.0px;
}

.node text {
  font: 13px ;

}




