/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
  
  /* Base typography */
body {
  font-family: "Courier New", monospace;
  font-size: 14pt;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Layout */
.container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}

.sidebar {
  width: 220px;
  padding: 2em;
  border-right: 1px solid #000;
  background: #f2f2f2;
}

.content {
  flex: 1;
  padding: 3em;
}

/* Site intro */
h1 {
  font-size: 18pt;
  margin-bottom: 0.5em;
}

.description {
  display: block;
  margin-bottom: 4em;
}

/* Writing pieces */
h2 {
  font-size: 14pt;
  font-weight: bold;
  margin-top: 0;
}

p {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* Separators */
hr {
  border: none;
  border-top: 1px solid #000;
  margin: 4em 0;
}

hr + h2 {
  margin-top: 0;
}

   



 