/* Links */
a {
  text-decoration: none;
}
a:link {
  color: rgb(135, 104, 72);
}
a:visited {
  color: rgb(135, 104, 72);
}
a:hover {
  color: rgb(182, 139, 95);
}

/* Navbar Updates */
nav {
  background-color: rgb(182, 139, 95);
}
nav p {
  color: rgb(216, 210, 210);
}
.underline::before {
  background-color: rgb(216, 210, 210);
}
nav h3 {
  color: rgb(216, 210, 210);
}
nav ul {
  background-color: rgb(182, 139, 95);
}
.burger div {
  background-color: rgb(216, 210, 210);
}

/* Bookshelf */
.header {
  margin-top: 80px;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header h1 {
  font-size: 50px;
}
.header p {
  font-size: 20px;
  margin-top: 30px;
}

.bookshelf {
  width: 75vw;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding-bottom: 30px;
  background-color: rgb(131, 90, 60);

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.shelf-container {
  width: 70vw;
  height: 280px;
  margin: 30px 30px 0px 30px;
  background-color: rgb(193, 154, 107);

  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.book-grid {
  display: grid;
  grid-row-gap: 3.5rem;
  grid-template-columns: repeat(4, 1fr);
  width: 67vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
}
.book-grid div {
  position: absolute;
  text-align: center;
  width: 166px;
  background-color: red;
  color: antiquewhite;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.book-grid img {
  height: 250px;
  transition: 0.5s;
}
.book-grid img:hover {
  box-shadow: -6px 12px 16px 0 rgba(0, 0, 0, 0.24);
}

/* Book Descriptions */
.book-description {
  margin-top: 80px;
  margin-bottom: 30px;
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.book-description h1 {
  font-size: 50px;
  text-align: center;
}
.book-description h2 {
  font-size: 30px;
  text-align: center;
}
.book-description p {
  margin-top: 20px;
  font-size: 20px;
}
.book-description ul,
.book-description ol {
  font-size: 20px;
}
.book-description li {
  margin-left: 40px;
}

blockquote {
  border-left: 3px solid rgb(131, 90, 60);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}
.excerpt {
  display: inline-block;
  margin-top: 0px;
  font-size: 20px;
}
