:root {
  --background: #2b2b2b;
  --text: #eeeeee;
  --muted: rgba(238, 238, 238, 0.72);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

main {
  box-sizing: border-box;
  width: min(100%, 34rem);
  padding: 2rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.8;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-color: var(--muted);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-color: currentColor;
}
