/* =======================
   HERO
======================= */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50vh;
  padding: 0 20px;
  background: #0a0a0f;
  overflow: hidden;
}
#hero h1 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
}
#hero p {
  font-size: 1.2em;
  color: #fff;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

/* CANVAS HERO */
canvas#network {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}
