/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


    :root {
      --bg: #f4f0df;
      --text: #181818;
      --muted: #666;
      --card: #fffaf0;
      --border: #222;
      --accent: #005f99;
      --shadow: #222;
    }

    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #121212;
        --text: #eeeeee;
        --muted: #aaa;
        --card: #1d1d1d;
        --border: #eeeeee;
        --accent: #7cc7ff;
        --shadow: #000;
      }
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Courier New", monospace;
      background:
        linear-gradient(var(--bg), var(--bg)),
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(0, 0, 0, 0.04) 3px
        );
      color: var(--text);
      line-height: 1.5;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: var(--bg);
      border-bottom: 3px solid var(--border);
      padding: 1rem;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: clamp(1.5rem, 5vw, 3rem);
      letter-spacing: -1px;
      text-transform: uppercase;
    }

    header p {
      margin: 0.25rem 0 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    main {
      width: min(720px, 100%);
      margin: 0 auto;
      padding: 1rem;
    }

    article {
      background: var(--card);
      border: 3px solid var(--border);
      box-shadow: 6px 6px 0 var(--shadow);
      padding: 1rem;
      margin: 0 0 1.25rem;
    }

    article h2 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.2rem, 4vw, 1.8rem);
      line-height: 1.1;
    }

    article h2 a {
      color: var(--accent);
      text-decoration: none;
    }

    article h2 a:hover {
      text-decoration: underline;
    }

    .meta {
      color: var(--muted);
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
      border-bottom: 1px dashed var(--border);
      padding-bottom: 0.5rem;
    }

    article p {
      margin: 0 0 1rem;
    }

    .read-more {
      display: inline-block;
      color: var(--text);
      border: 2px solid var(--border);
      padding: 0.35rem 0.6rem;
      text-decoration: none;
      background: var(--bg);
      font-weight: bold;
    }

    .read-more:hover {
      background: var(--accent);
      color: var(--bg);
    }

    footer {
      text-align: center;
      color: var(--muted);
      padding: 2rem 1rem;
      font-size: 0.85rem;
    }
    .image-container {
  width: 200px;
  height: 300px;
  border: 1px solid black;
  margin-bottom: 25px;
}

p img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

    @media (max-width: 480px) {
      article {
        box-shadow: 4px 4px 0 var(--shadow);
      }
    }
  