body {
  margin: 0;
  font-family: Georgia, serif;
  line-height: 1.5;
  font-size: large;
  background: #f5f1e8;
  color: #2a2a2a;
}

.page {
  display: flex;
}

.sidebar {
  width: 250px;
  background: #eae4d3;
  padding: 20px;
  border-right: 1px solid #d6d0c4;
  height: 100vh;
  position: sticky;
  top: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  padding: 30px;
  max-width: 800px;
}

a {
  color: #5f8f8b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.navbar {
  font-family: "Courier New", monospace;
  font-size: 1.2em;
}

.footer {
  padding: 20px;
  margin-top: auto;
}

hr {
  width: 100%;
  box-sizing: border-box;
}
