/* ===== reset ===== */
* {
  box-sizing: border-box;
}

/* ===== base ===== */
body {
  background: #fff;
  color: #000;
  font-family: "MS Gothic", "MS PGothic", monospace;
  max-width: 640px;
  margin: 40px auto;
  line-height: 1.6;
  font-size: 14px;
}

/* ===== header ===== */
header {
  text-align: center;
}

h1 {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.tagline {
  font-size: 12px;
}

/* ===== nav ===== */
nav {
  margin-top: 6px;
}

nav a {
  color: #000;
  text-decoration: underline;
  font-size: 13px;
}

nav a:hover {
  background: #000;
  color: #fff;
}

/* ===== separator ===== */
hr {
  border: none;
  border-top: 1px solid #000;
  margin: 24px 0;
}

/* ===== post ===== */
.post h2 {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 2px;
}

.title {
  font-size: 16px;
  margin-bottom: 4px;
}

/* ===== player ===== */
iframe {
  width: 100%;
  height: 56px;
  border: 1px solid #000;
  margin-bottom: 8px;
}

/* ===== text ===== */
.text {
  font-size: 13px;
}

/* ===== footer ===== */
footer {
  text-align: center;
  font-size: 11px;
  margin-top: 40px;
}

/* ===== retro extras ===== */
a {
  color: #000;
}

a:visited {
  color: #000;
}

::selection {
  background: #000;
  color: #fff;
}
