:root {
  --red: #da181a;
}

a {
  color: #5a5a5a;
  text-decoration: underline;
}

.button {
  border: 1.5px solid var(--red);
  color: var(--red);
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 0;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 22px;
  padding-right: 22px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: color .3s, background-color .3s;
  display: inline-block;
}

.button:hover {
  border-top-color: var(--red);
  border-right-color: var(--red);
  border-bottom-color: var(--red);
  border-left-color: var(--red);
  background-color: var(--red);
  color: #fff;
}

.button:focus {
  outline-offset: 0px;
  outline: 4px solid #da181a66;
}

.body {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow-wrap: normal;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.image {
  max-width: 290px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.books-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 32px;
  display: flex;
}

.book {
  width: 150px;
}

.book.blueprint {
  width: 180px;
}

.heading {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 28px;
  line-height: 1.2;
}

.paragraph {
  font-family: Georgia, Times, Times New Roman, serif;
}

.footer {
  border: 1px #d8d8d8;
  border-top-style: solid;
  width: 100%;
  margin-bottom: 24px;
  padding-top: 16px;
}

.p1 {
  text-align: center;
  max-width: 450px;
  margin-top: 4px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 18px;
  line-height: 1.7;
}

.p1.top {
  margin-top: 40px;
}

.p1.short-line-height {
  margin-top: 8px;
  line-height: 1.4;
}

.p1.order {
  color: #000;
  white-space: normal;
  max-width: 380px;
}

.text-block {
  color: #5e5e5e;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .book {
    width: 200px;
  }

  .heading {
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 479px) {
  .book.blueprint {
    width: 200px;
  }
}
