@font-face {
  font-family: 'monospace';
}

body {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  background: #f4f4f4;
  color: #000;
  line-height: 1.4;
}

/* Layout */

.zine {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero */

.hero h1 {
  font-size: 80px;
  line-height: 0.9;
  transform: rotate(-2deg);
}

.tagline {
  font-size: 18px;
  margin-top: 1rem;
  opacity: 0.7;
}

/* Book block */

.book {
  margin-top: 4rem;
  background: white;
  padding: 1.5rem;
  border: 2px solid black;
  transform: rotate(1deg);
  box-shadow: 6px 6px 0 black;
}

.book a {
  text-decoration: none;
  color: inherit;
}

.book h2 {
  font-size: 36px;
}

.author {
  font-size: 20px;
  margin-top: 0.5rem;
}

/* Hover = more physical feel */

.book:hover {
  transform: rotate(0deg) scale(1.02);
  transition: 0.2s ease;
}