body {
  min-height: 100dvh;
  background-image: url('/.img/bg-tall.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1000px) {
  body {
    background-image: url('/.img/bg-wide.jpeg');
  }
}

main {
  background-color: transparent;
  display: flex;
  justify-content: center;
  padding: 0;
}

.home-hero {
  background-color: #222222cc;
  margin: 2rem 2rem 0rem 8rem;
  padding: 1rem;
  border-radius: 8px;
}

.home-hero-heading,
.home-hero-tagline {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.home-hero-heading {
  margin: 0 0 0.5rem 0;
}

.home-hero-tagline {
  display: inline-block;
  margin-left: 1rem;
  white-space: pre-wrap;
}

[data-typewriter].typewriter-active::after {
  content: '█';
  display: inline-block;
  margin-left: 0.125rem;
  animation: typewriter-caret 1s steps(1, end) infinite;
  color: inherit;
}

@keyframes typewriter-caret {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}
