/* Import mononoki font (if not installed locally) */
/* @import url('https://fonts.googleapis.com/css2?family=Mononoki&display=swap'); */

/* Catppuccin Mocha Dark palette */
:root {
  --base: #1e1e2e;
  --mantle: #181825;
  --crust: #11111b;

  --text: #cdd6f4;
  --subtext1: #bac2de;
  --subtext0: #a6adc8;

  --overlay2: #9399b2;
  --overlay1: #7f849c;
  --overlay0: #6c7086;

  --surface2: #585b70;
  --surface1: #45475a;
  --surface0: #313244;

  --blue: #89b4fa;
  --green: #a6e3a1;
  --yellow: #f9e2af;
  --peach: #fab387;
  --red: #f38ba8;
  --mauve: #cba6f7;
  --teal: #94e2d5;
  --sky: #89dceb;
  --lavender: #b4befe;
}

/* Global reset */
body {
  margin: 0;
  padding: 2rem;
  /* font-family: monospace; */
  font-family: 'mononoki', monospace;
  background-color: var(--base);
  color: var(--text);
  line-height: 1.3;
}

/* Container */
.container {
  max-width: 720px;
  margin: auto;
  background-color: var(--mantle);
  border: 1px solid var(--surface0);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 10px var(--crust);
}

/* Links */
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--mauve);
}

/* Inline code */
code {
  background: var(--surface0);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: inherit;
}

/* Headings */
h1, h2, h3 {
  color: var(--lavender);
  margin-top: 1.5rem;
}


span[style*="color: #000000"] {
  color: var(--text) !important;
}

div[style*="background: #f5f5f5"] {
  background: var(--crust) !important;
}


