  <style>

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

body {
  background-image: url('paper-texture.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 1.6;
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-image: url('paper-texture.jpg');
  padding-bottom: 0.5rem;
  text-align: center;
}

#logo {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  margin: 0 auto;
  display: block;
}

nav {
 border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  padding: 0;         /* remove extra space inside */
  margin: 0;          /* make sure no gap above/below */
  line-height: 1;     /* tighten vertical spacing */
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links li a {
  font-family: 'Inthewood-Regular', serif;
  text-decoration: none;
  font-weight: bold;
  color: #111;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.nav-links li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.blog-entry {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem auto;
  width: 80%;
  max-width: 900px;
  padding: 1rem;
  border-bottom: 1px solid #333;
  transition: background-color 0.3s ease;
}

.blog-entry img {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.blog-entry:hover {
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-entry:hover img {
  transform: scale(1.05);
}
.blog-content {
  flex: 1;
}

.blog-content h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #111;
  font-family: 'Inthewood-Regular', serif;
}

.blog-content a {
  text-decoration: none;
}

.blog-content a:hover h2 {
  text-decoration: underline;
}

.blog-content p {
  margin: 0;
  color: #222;
}

.summary {
  text-align: left;
  margin-bottom: 0.5rem;
}

.scribble,
.scribble:link,
.scribble:visited,
.scribble:active {
  display: block;
  text-align: right;
  font-family: 'BliauntScript', cursive;
  font-size: 1.5rem;
  color: #111;
  opacity: 0.3;
  margin-top: 0.75rem;
  position: relative;
  top: -0.25rem;
  right: -0.15rem;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s ease;
  will-change: opacity;
}

.scribble:hover {
  opacity: 1;
}

main {
  padding-top: 230px; /* Make room for header + logo + nav */
  text-align: center;
}

.ink-blot {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 300px;
  height: 300px;
  background-image: url('ink-blot.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 500;
}

@font-face {
  font-family: 'Inthewood-Regular';
  src: url('Inthewood-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'BliauntScript';
  src: url('BliauntScript.otf') format('opentype');
}


footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}
  </style>
