* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    height: 100%;
    background: #000000;
  }
  
  body {
    background: #000000;
    color: white;
    font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    padding: 20px;
    height: 100%;
    min-height: 100vh;
  }
  
  /* HEADER */
  
  .header {
    margin-bottom: 32px;
  }
  
  .header h1 {
    font-size: 1.1rem;
    font-weight: normal;
    color:rgb(226, 226, 226);
  }
  
  .header p {
    opacity: 0.3;
    font-size: 0.8rem;
  }
  
  /* PROJECTS */
  
  .projects {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .project h2 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2px;
  }
  
  .project p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
  }
  
  /* COLOURS (still your identity system) */
  
  .chipped h2 { color: rgb(155, 166, 199); }
  .pan h2 { color: rgb(144, 172, 144); }
  .carmilla h2 { color: rgb(184, 133, 133); }
  .pleasure h2 { color: rgb(175, 155, 188); }
  .diary h2 { color:rgb(196, 196, 196)}
  
  /* FOOTER */
  
  .footer {
    margin-top: 48px;
    padding-top: 16px;
    padding-bottom: 48px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    opacity: 0.3;
  
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .diary-link {
    font-size: 0.8rem;
    color: inherit;
    opacity: 0.6;
    text-decoration: none;
  }
  
  .diary-link:hover {
    opacity: 1;
  }

  .subtitle {
    opacity: 0.6;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  DIARY PAGE

  .diary {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .project h2 a,
.project h2 a:visited,
.project h2 a:active {
  color: inherit;
  text-decoration: none;
}

.project.diary h2 {
    font-size: 1.0rem;
    font-weight: 400;
    margin-bottom: 2px;
    color: inherit;
    text-decoration: none;
  }

.project.diary h2 a {
    font-size: 1rem; /* change this */
    color:rgb(226, 226, 226)
  }

  READING PAGE

  .reading {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .project.diary h1 {
    font-size: 1.0rem;
    font-weight: 400;
    margin-bottom: 2px;
    color: inherit;
    text-decoration: none;
  }
  
  .year {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    opacity: 0.4;
    margin-top: 10px;
  }
  
  .meta {
    opacity: 0.5;
    margin-bottom: 10px;
    font-size: 0.85rem;
  }
  
  .year {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    opacity: 0.4;
    margin: 12px 0 10px;
    font-weight: normal;
  }
  
  .book {
    margin-bottom: 14px;
  }
  
  .book p {
    margin: 0;
  }
  
  .title {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  .author {
    font-size: 0.7rem !important;
    color: rgb(255, 255, 255, 1.0);
  }

  .date {
    font-size: 0.8rem;
    color: rgb(255, 255, 255, 0.5) !important;
    margin-top: 20pt;
    margin-bottom: 10pt;
  }

  .header h1 a {
    color: inherit;          /* keeps same colour as h1 */
    text-decoration: none;   /* removes underline */
  }
  
  /* prevents blue/purple visited states */
  .header h1 a:visited {
    color: inherit;
  }
  
  /* optional: keeps it stable when clicked */
  .header h1 a:active {
    color: inherit;
  }