@font-face {
  font-family: "Sarasa UI SC";
  src: url("assets/SarasaUiSC-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sarasa UI SC";
  src: url("assets/SarasaUiSC-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --base: #232136;
  --surface: #2a273f;
  --text: #e0def4;
  --muted: #6e6a86;
  --accent: #c4a7e7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem;
  background: var(--base);
  color: var(--text);
  font-family: "Sarasa UI SC", system-ui, sans-serif;
  line-height: 1.6;
}

nav {
  margin-bottom: 2rem;
}

nav a {
  margin-right: 1rem;
  color: var(--accent);
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 42rem;
}

h1 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 2rem;
}

p {
  margin: 1rem 0;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin: 0.2rem 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: 400;
}
