/* =========================
   VARIABLES (Easy theming)
   ========================= */
:root {
  --font-body: "Segoe UI", Arial, sans-serif;
  --font-heading: Georgia, serif;

  --color-bg: #ffffff;
  --color-text: #222222;
  --color-primary: #3b82f6;
  --color-secondary: #f3f4f6;
  --color-border: #e5e7eb;

  --max-width: 900px;
}
/* Canvas fun */
#canvas {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 10px;
  justify-content: left;
  color: crimson;
  padding:25px;
  font-size: 15vw;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
/* =========================
   RESET / BASE STYLES
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--color-bg);
  color: var(--color-text);
}

/* =========================
   LAYOUT
   ========================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

/* =========================
   HEADER / NAVIGATION
   ========================= */
.site-header {
  background: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.site-title {
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--color-text);
}

.nav {
  margin-top: 0.5rem;
}

.nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--color-primary);
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

p {
  margin: 1rem 0;
}

a {
  color: var(--color-primary);
}

a:hover {
  text-decoration: underline;
}

/* =========================
   POSTS / CONTENT
   ========================= */
.post {
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2rem;
}

.post-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

/* =========================
   CODE BLOCKS
   ========================= */
pre, code {
  font-family: monospace;
  background: #f4f4f4;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
}

pre {
  padding: 1rem;
  overflow-x: auto;
}

