/* Base layout and typography */
body {
  background-color: #fcf7e0; /* cream */
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* Header and navigation */
header {
  background: transparent;
  padding-top: 24px;
  padding-bottom: 12px;
  text-align: center;
}

header h1 {
  margin: 0 0 8px 0;
  font-weight: 700;
}

nav {
  margin-top: 8px;
}

nav a {
  margin: 0 8px;
  text-decoration: none;
}

/* Links */
a:link {
  color: blue;
}
a:visited {
  color: blue;
}
a:hover {
  color: darkblue;
}
a:active {
  color: darkblue;
}

/* Content helpers */
h2 {
  margin-top: 24px;
}

hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 16px 0;
}

ul {
  padding-left: 20px;
}

code, kbd, pre, samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

footer {
  text-align: center;
  padding: 24px 0 40px 0;
  opacity: 0.8;
}


