*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-size: 16px;
}

body {
  background: #FFF;
  color: #261B23;
  display: grid;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Aptos, Roboto, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: clamp(1rem, 2.5vw, 2rem);
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0025em;
  line-height: 1.4;
  min-height: 100dvh;
  place-items: center;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

#error-description {
  fill: #d30001;
}

#error-id {
  fill: #f0eff0;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #101010;
    color: #e0e0e0;
  }

  #error-description {
    fill: #FF6161;
  }

  #error-id {
    fill: #2c2c2c;
  }
}

a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.0925em;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

main {
  display: grid;
  gap: 1em;
  padding: 2em;
  place-items: center;
  text-align: center;
}

main header {
  width: min(100%, 12em);
}

main header svg {
  height: auto;
  max-width: 100%;
  width: 100%;
}

main article {
  width: min(100%, 30em);
}

main article p {
  font-size: 75%;
}

main article br {
  display: none;

  @media(min-width: 48em) {
    display: inline;
  }
}
