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

html, body {
  height: 100%;
  background: black;
  overflow: hidden;
  font-family: monospace;
}

#void {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#terminal {
  position: absolute;
  bottom: 5vh;
  left: 0;
  padding-left: 5vw;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  color: #00ffcc;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  position: absolute;
  bottom: 5vh;
  left: 5vw;
  color: #00ffcc;
  font-size: 1rem;
  line-height: 1.4;
  z-index: 2;
  width: 90vw;
  max-height: 40vh;
  overflow: hidden;
}

.glitch {
  animation: flicker 1s infinite;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}
