  :root {
    --bg: #faf2dc;        /* warm cream, slightly brighter & yellowy */
    --paper: #ffffff;
    --ink: #111111;
    --logo: #ed4e2a; /* the orange square in the corner */
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    padding: 40px 20px;
    background: var(--bg);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
  }

.grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

  @media (max-width: 780px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .grid { grid-template-columns: 1fr; }
  }

 .links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: larger;
    padding-bottom: 30px;
  }
  .about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: larger;
    font-weight: bold;
    padding-bottom: 30px;
  }