:root {
  color-scheme: dark;
  --bg: #000000;
  --text: #29ff94;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: var(--text);
  font-family: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.splash {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.splash__center {
  text-align: center;
}

.line {
  font-size: 1.1rem;
  line-height: 1.7;
}

.line--type .typed {
  white-space: pre-wrap;
}

.cursor {
  width: 0.7em;
  height: 1.1em;
  background: var(--text);
  margin-left: 0.05rem;
  display: inline-block;
  vertical-align: text-bottom;
  animation: blink 0.75s steps(1) infinite;
}

.cursor--idle {
  animation-duration: 1.1s;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .line {
    font-size: 1rem;
  }
}
