body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  min-height: 160vh;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.container {
  background: #2b2b2b;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}
#hex-grid {
  height: 100vh;
  background: #000;
}
#hex-grid .grid {
  position: absolute;
  top: 0;
  left: 0;
  background: url(grid.svg) repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: 500px;
}
#hex-grid .light {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15em;
  height: 15em;
  filter: blur(15px);
  background: linear-gradient(90deg, orange 0%, goldenrod 100%);
  z-index: 0;
}

#banner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 100;
}
#TECH path {
  fill: #fff;
  fill-opacity: 0;
}
.finished #TECH :first-child {
  transition: fill-opacity 1s 0.2s;
  fill-opacity: 1;
}
.finished #TECH :first-child + path {
  transition: fill-opacity 1s 0.3s;
  fill-opacity: 1;
}
.finished #TECH :first-child + path + path {
  transition: fill-opacity 1s 0.4s;
  fill-opacity: 1;
}
.finished #TECH :first-child + path + path + path {
  transition: fill-opacity 1s 0.5s;
  fill-opacity: 1;
}
