canvas {
  position: fixed;
  top: 0;
  left: 0;
}

.parent {
  display: grid;
  place-items: center;
}

main {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  position: absolute;
  width: 100vw;
  color: white;
  z-index: 99;
  width: 100%;
  margin: 0 auto;
  padding: 1vh 1vw;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  place-items: center;
}

.mid {
  grid-column: 2 / 12;
  place-items: center;
}

section {
  grid-column: 2 / 12;
  place-items: center;
  text-align: center;
  padding: 1 rem;
  background: var(--dark-bg);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: var(--spacing);
}

#right {
  grid-column: 6 / 6;
}
