/*
  Simple, Wikipedia-like site-wide CSS
*/
body {
  background: #fff;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #222;
  margin: 0;
  padding: 0;
}

header, .simple-header {
  background: #f8f9fa;
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 0 0.7rem 0;
  text-align: center;
}

header h1, .simple-header h1 {
  margin: 0 0 0.3rem 0;
  font-size: 2rem;
  color: #222;
  font-weight: normal;
}

nav ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin: 0 0.7rem;
}

nav a {
  color: #0645ad;
  text-decoration: underline;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: none;
}

main, .simple-content {
  max-width: 800px;
  margin: 2.5rem auto;
  background: #fff;
  padding: 0 1.5rem 2rem 1.5rem;
}

h2, .simple-content h2 {
  color: #222;
  font-size: 1.3rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.2rem;
  margin-top: 2rem;
}

ul, .simple-content ul {
  padding-left: 1.2rem;
}

li, .simple-content li {
  margin-bottom: 0.4rem;
}

footer {
  background: #f8f9fa;
  color: #888;
  text-align: center;
  padding: 1rem 0 0.5rem 0;
  font-size: 0.95rem;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}

@media (max-width: 700px) {
  main, .simple-content { padding: 0 0.5rem 2rem 0.5rem; }
  header h1, .simple-header h1 { font-size: 1.2rem; }
}
