body {
  font-family: system-ui, sans-serif;
  margin: 1.5rem;
  line-height: 1.6;
  background-color: #110800;
  color:#fce6d3
}

a {
    color:#fce6d3;
}

button {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.site-header {
  padding: .1rem .1rem;           /* spacing */
}

.site-header nav {
  display: flex;                /* horizontal line */
  justify-content: flex-start;    /* align links to the right */
  gap: 2rem;                    /* spacing between links */
}

.site-header nav a {
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;    /* all uppercase */
  font-family: sans-serif;
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: #f39c12;               /* hover highlight */
}

.markdown-content {
  margin-top: 1rem;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 0.5rem 0;
}
