/* ======================================================================
   00_tokens.css
   - Design tokens only
======================================================================== */
:root {
  --font-main: "Zen Maru Gothic", sans-serif;

  --text: #524b35;
  --link-hover: #38a297;

  --blue: #34508e;
  --pink: #f2b1ad;
  --turquoise: #38a297;
  --yellow: #f8bf2d;
  --gray-100: #f5f5f5;
  --white: #fff;
  --brown: #665d51;

  --radius-20: 20px;
  --radius-16: 16px;

  --border-soft: rgba(0, 0, 0, 0.08);

  --trans-fast: 0.15s;
  --trans-base: 0.2s;
  --trans-slow: 0.3s;
}
