:root {
  --backdrop-color: #050914;
  --text-color: #06070d;
  --text-glow-primary: rgba(228, 240, 255, 0.9);
  --text-glow-secondary: rgba(110, 235, 255, 0.55);
  --text-shadow: rgba(4, 8, 16, 0.85);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'IBM Plex Mono', 'Fira Mono', 'Source Code Pro', monospace;
  background: var(--backdrop-color) url('../img/background.png') center / cover
    no-repeat fixed;
  color: var(--text-color);
  display: grid;
  place-items: center;
}

.hero {
  width: min(90vw, 60rem);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.hero__content {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-items: center;
}

.hero__content h1,
.hero__content p {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-shadow:
    0 0.35rem 0.6rem var(--text-glow-primary),
    0 0.9rem 1.9rem var(--text-glow-secondary),
    0 0.15rem 0.4rem var(--text-shadow);
}

.hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero__content p {
  font-size: clamp(1.125rem, 3vw, 1.75rem);
  font-weight: 300;
  opacity: 0.97;
}
