/* global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: lowercase;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: "Times New Roman", Georgia, serif;
  line-height: 1.6;
  max-width: 650px;
  margin: 40px auto;
  padding: 0 20px;
}

/* title on homepage */
h1 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
}

/* main headers on category pages */
h2 {
  font-size: 26px;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* subheader (small description under titles) */
.subtitle, h3 {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  color: #000000;
}

/* normal text */
p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #000000;
}

/* navigation list on homepage */
ul.nav {
  list-style: none;
  margin-top: 20px;
}

ul.nav li {
  margin-bottom: 8px;
}

/* general lists */
ul {
  margin-top: 10px;
  margin-left: 18px;
}

ul li {
  margin-bottom: 8px;
}

/* links: black, minimal */
a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #00000020;
}

a:hover {
  border-bottom: 1px solid #000000;
}

/* horizontal rule */
hr {
  border: none;
  border-top: 1px solid #00000030;
  margin: 20px 0;
}

/* images — minimalist inline look */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

