/* Design tokens — source of truth: mobile/lib/app/theme.dart */

:root {
  --color-paper: #FBF7F3;
  --color-brown: #572616;
  --color-terracotta: #A8341F;
  --color-cream: #FDF7EC;
  --font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--color-paper);
  color: var(--color-brown);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
