@font-face {
  font-family: 'SuperGroteskOT';
  src: url('../fonts/SuperGroteskOT-Med.otf');
}

@font-face {
  font-family: 'NunitoSans';
  src: url('../fonts/NunitoSans-ExtraLight.woff');
}

@font-face {
  font-family: 'NunitoSans';
  src: url('../fonts/NunitoSans-Regular.ttf');
  font-weight: 300;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-image: url('../img/background.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #464646;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header {
  font-family: 'SuperGroteskOT';
  color: white;
  display: flex;
  justify-content: center;
  font-size: 60px;
  padding-top: 40px;
  padding-bottom: 20px;
}

#network {
  flex: 1;
  width: 100%;
}

#network svg {
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  width: 100%;
  height: 100%;
}

#network circle {
  cursor: pointer;
}

.link {
  stroke: white;
  stroke-width: 2px;
  opacity: 0.4;
}

.showGraph {
  opacity: 1;
  transition: opacity 0.3s;
}

.active {
  stroke: white;
  fill: #a7a7a745;
  transition: fill 0.5s;
  stroke-width: 2px;
}

.active::before {
  stroke: white;
  fill: transparent;
  r: 45;
}

.child {
  stroke: white;
  transition: fill 0.5s;
  fill: transparent;
}

.subChild {
  stroke: white;
  fill: white;
  transition: fill 2s;
}

.hidden {
  fill: transparent;
  stroke: transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.title {
  fill: white;
  x: 50%;
  y: 50%;
  text-anchor: middle;
  pointer-events: none;
  dominant-baseline: middle;
  font-family: 'NunitoSans';
  transition: fill 0.5s;
}

.info {
  opacity: 1;
  pointer-events: none;
  border-radius: 50%;
}

.wrapper {
  opacity: 1;
  display: flex;
  flex-direction: column;
  padding: 2% 13%;
  width: 80%;
  height: 95%;
  justify-content: center;
}

.headline {
  color: white;
  font-family: 'NunitoSans';
  text-overflow: hidden;
  pointer-events: none;
  margin-bottom: 1px;
  font-weight: 300;
}

.description {
  color: white;
  font-family: 'NunitoSans';
  text-overflow: hidden;
  pointer-events: none;
  overflow: hidden;
}
