:root {
  --ferro: #16191d;
  --ferro-profundo: #0d1013;
  --ferro-elevado: #1d2227;
  --creme: #ede4cf;
  --creme-suave: #cfc2ad;
  --creme-apagado: #a99f8e;
  --teal: #42b7b9;
  --teal-claro: #83d7d4;
  --linha: rgba(237, 228, 207, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% -10%, var(--ferro-elevado), var(--ferro) 60%, var(--ferro-profundo));
  color: var(--creme);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  padding: 2rem;
  text-align: center;
}

main {
  max-width: 34rem;
}

.wordmark {
  width: 168px;
  height: auto;
  margin-bottom: 2.5rem;
}

h1 {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  margin: 0 0 0.9rem;
  color: var(--creme);
}

p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--creme-suave);
  margin: 0 0 0.6rem;
}

.rotulo {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--linha);
  border-radius: 999px;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-claro);
}

a {
  color: var(--teal-claro);
  text-decoration-color: rgba(131, 215, 212, 0.4);
}

a:hover {
  text-decoration-color: var(--teal-claro);
}

.rodape {
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: var(--creme-apagado);
}
