
/* Typography */
body {
  font-size: 1rem;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

blockquote {
  border-left: 5px solid #000000;
  padding-left: 1rem;
  font-style: italic;
  margin: 1rem 0;
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

ol {
  list-style-type: decimal;
  margin-left: 1.5rem;
}

code {
  font-family: 'Courier New', Courier, monospace;
  background-color: #f4f4f4;
  padding: 0.5rem;
  border-radius: 4px;
}

pre {
  font-family: 'Courier New', Courier, monospace;
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 4px;
  white-space: pre;
}

