:root {
  --root-font-family:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --root-font-size-large: 1.125rem;
  --root-line-height-large: 1.5;
  --root-color-text: #1b1e23;
  --root-color-link: #4a52b6;
  --root-color-link-hover: #32398c;
  --root-color-background: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--root-color-text);
  font-family: var(--root-font-family);
  background: var(--root-color-background);
}

.root-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.root-page p,
.root-page a {
  font-size: var(--root-font-size-large);
  line-height: var(--root-line-height-large);
}

.root-page p {
  margin: 0;
}

.root-page a {
  color: var(--root-color-link);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.root-page a:hover {
  color: var(--root-color-link-hover);
}
