body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #faf7f2;
  color: #2b2b2b;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4efe7;
}

.hero h1 {
  font-size: 2.8rem;
}

/* SECTIONS */
.section {
  padding: 100px 20px;
}

.light {
  background: #faf7f2;
}

.accent {
  background: #fffaf3;
}

.quote-section {
  background: #2b2b2b;
  color: #fff;
}

/* TEXT */
p {
  line-height: 1.8;
}

.quote {
  font-style: italic;
  margin-top: 20px;
}

/* BUTTON */
.btn-soft {
  padding: 10px 25px;
  border: 1px solid #2b2b2b;
  text-decoration: none;
  color: #2b2b2b;
  transition: 0.3s;
}

.btn-soft:hover {
  background: #2b2b2b;
  color: #fff;
}

/* BOOK */
.book-card {
  width: 220px;
  height: 300px;
  margin: auto;
}

.book-inner {
  width: 100%;
  height: 100%;
  background: #2b2b2b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* LINKS */
.social-links a,
.buy-links a {
  margin: 5px 10px;
  text-decoration: none;
  color: #444;
}

.social-links a:hover,
.buy-links a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #eee;
}
.author-img {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.author-img:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}
