body {
  background-color: #FFFAF0;
  color: #3a2e2a;
  font-family: 'Open Sans', sans-serif;
  max-width: 800px;
  margin: 3em auto;
  padding: 0 1em;
  line-height: 1.6;
}

h2 {
  text-align: center;
  font-size: 1.2rem;	
  margin-bottom: 0.75rem;	
}

a {
  color: #3a2e2a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  line-height: 1.6;
  margin: 1rem 0;
  text-align: left;
  font-size: 1.1em;
  color: #3a2e2a;
}

strong {
  font-weight: bold;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  background-color: #fffaf0;
}

.navbar-title {
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none;
  color: #333;
}

.navbar-title:hover  {
  text-decoration: underline;	
}

.navbar-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

.navbar-links a.active {
  font-weight: bold;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
}

.navbar-links a:hover {
  text-decoration: underline;
}

.navbar-links a.active:hover {
  text-decoration: none;
}

.home-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 0.9em;
  opacity: 0.6;
  z-index: 1000;
}

.home-link a {
  color: inherit;
}

.home-link a:hover {
  opacity: 1;
  text-decoration: underline;
}

pre {
  border-left: 4px solid #888;
  overflow-x: auto;
  margin: 30px 0px !important;
}

.inline-code {
  font-family: Consolas, monospace;
  background-color: #f0e8d8;
  color: #333;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: .9em;
}

pre code.language-xml {
  display: block;
  margin: 0px;
  padding: 0px;
  overflow-x: auto;
}


