/* GLOBAL STYLES */
body {
  background-color: #ffffff; /* Clean white background */
  color: #1a1a1a; /* Sharp black text */
  font-family: "Helvetica", "Arial", sans-serif;
  line-height: 1.6;
  max-width: 700px;
  margin: 50px auto;
  padding: 20px;
}

h1 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* INDEX PAGE STYLES */
.entry {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.date {
  font-family: monospace;
  color: #888;
}

/* ESSAY PAGE STYLES */
article {
  margin-top: 50px;
}

.subtitle {
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
}

.meta {
  font-family: monospace;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 30px;
}

.content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.biblio {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 40px;
}

.biblio li {
  margin-bottom: 10px;
}

nav a {
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: normal;
  color: #888;
}

footer {
  margin-top: 60px;
  font-size: 0.8rem;
  color: #ccc;
  text-align: center;
}