/* Shares the game's palette so the pages feel like part of it. */
:root {
  --cream: #fdf6ec;
  --warm-white: #fffdf8;
  --cream-deep: #f6eada;
  --blush: #f8c8d0;
  --blush-deep: #f4a9b8;
  --caramel-deep: #d98e5f;
  --ink: #5c4033;
  --ink-soft: #8a6b57;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 24px 80px;
  background: var(--cream);
  color: var(--ink);
  font-family: Fredoka, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

main {
  max-width: 720px;
  margin: 0 auto;
}

header {
  text-align: center;
  padding: 56px 0 28px;
}

header img {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  border: 3px solid var(--cream-deep);
}

h1 {
  font-size: 44px;
  font-weight: 700;
  margin: 20px 0 4px;
  color: var(--blush-deep);
}

.byline {
  color: var(--ink-soft);
  font-size: 20px;
  margin: 0;
}

h2 {
  font-size: 27px;
  font-weight: 600;
  color: var(--caramel-deep);
  margin: 40px 0 10px;
}

.card {
  background: var(--warm-white);
  border: 3px solid var(--cream-deep);
  border-radius: 26px;
  padding: 8px 34px 30px;
  margin-top: 26px;
}

a {
  color: var(--blush-deep);
  font-weight: 500;
}

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

.updated {
  color: var(--ink-soft);
  font-size: 16px;
}

footer {
  text-align: center;
  margin-top: 46px;
  color: var(--ink-soft);
  font-size: 16px;
}

footer a {
  margin: 0 10px;
}
