h3 {
    color: white;
    font-style: italic;
    font-size: large;
  }
  
  #book-background {
    position: absolute;
    width: 100%;
    height: 1300px;
    object-fit: cover;
    top: 300px;
    z-index: -1;
    opacity: 0.15;
  }
  
  #book-presentation {
    display: flex;
    justify-content: center;
    padding: 0 15%;
  }
  
  #book-presentation img {
    width: 40%;
    height: fit-content;
    margin: 1em auto;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  }
  
  #book-description {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0;
    padding: 1em 0 1em 3em;
    width: fit-content;
    min-width: 60%;
  }
  
  #book-description h3 {
    font-size: 2.25rem;
    margin: 0;
  }
  
  #book-description p {
    display: flex;
    margin: 0;
    padding: 1.25rem 0;
  }
  
  #purchase-here a {
    color: rgb(48, 87, 78);
    padding: 0.6em;
    background-color: rgb(255, 237, 217);
    border-radius: 60px;
    text-transform: uppercase;
    font-size: 1.5rem;
  }
  
  #purchase-here a:hover {
    background-color: hwb(166 19% 66%);
    color: rgb(255, 237, 217);
  }
  
  #quotes {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    padding-bottom: 100px;
  }
  
  #quotes li {
    width: 25%;
  }
  
  #quotes img {
    height: 100px;
    width: 100px;
  }
  
  #quotes h4 {
    color: white;
    margin: 0;
    padding-bottom: 1em;
  }
  
  #quotes p {
    color: white;
    font-size: large;
    font-family: "Playfair Display", "Quicksand";
    font-style: italic;
    margin: 0;
    padding: 0.5em;
    line-height: 1.7em;
  }
  
  #mentions {
    position: relative;
    top: -70px;
    background: linear-gradient(45deg, rgb(255, 237, 217), rgb(255, 232, 206));
    padding: 1.5em 20%;
    border-radius: 2000px/200px;
    height: fit-content;
  }
  
  #mentions h2 {
    font-size: 56px;
    color: rgb(99, 55, 97);
  }
  
  #mention-tags {
    margin: 0 auto;
    padding-bottom: 60px;
  }
  
  #mention-tags p {
    color: rgb(99, 55, 97);
    margin: 0px;
    padding: 0;
    line-height: 1.5em;
  }
  
  #mention-tags li {
    display: flex;
    flex-direction: column;
  }
  
  .article {
    color: rgb(99, 55, 97);
    margin: 0px;
    font-size: 24px;
    font-weight: bold;
    padding: 0.5em 0;
    transition: transform 0.2s ease-out;
  }
  
  .article:hover {
    color: rgb(48, 87, 78);
    transform: scale(1.01) ;
  }
  
  .publisher {
    margin: 0px;
    color: rgb(99, 55, 97);
  }
  
  .publisher:hover {
    text-decoration: underline;
  }
  
  hr {
    width: 100%;
    height: 1px;
    background-color: rgb(48, 87, 78);
    margin: 2em 0;
  }
  
  #book-launch {
    padding: 0 15%;
    margin: 0;
  }
  
  #book-launch h2 {
    font-size: 40px;
    margin: 0;
    color: white;
  }
  
  #book-launch h3 {
    font-weight: 300;
  }
  
  #photo-gallery {
    --s: 75px; /* control the size */
    --g: 10px; /* control the gap */
    --f: 1.5; /* control the scale factor */
  
    display: grid;
    gap: var(--g);
    aspect-ratio: 1;
    grid-template-columns: repeat(4, auto);
    padding-bottom: 40px;
  }
  
  #photo-gallery > img {
    width: 0;
    height: 0;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.35s linear;
  }
  
  #photo-gallery img:hover {
    width: calc(var(--s) * var(--f));
    height: calc(var(--s) * var(--f));
  }
  
  .custom-shape-divider-top-1711480004 {
    position: relative;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  .custom-shape-divider-top-1711480004 svg {
    position: relative;
    width: calc(100% + 1.3px);
    height: 61px;
  }
  
  .custom-shape-divider-top-1711480004 .shape-fill {
    fill: rgb(99, 55, 97);
  }
  
  #news-home {
    padding: 20px 10%;
    margin: 0 auto;
    background-color: rgb(99, 55, 97);
  }
  
  #news-home h2 {
    font-size: 56px;
    color: white;
    margin: 24px 0;
  }
  
  .IG-posts {
    display: flex;
    justify-content: left;
  }
  
  .IG-posts img {
    height: 40px;
  }
  
  .IG-posts a {
    font-size: 20px;
    color: rgb(255, 237, 217);
    margin: 0;
    padding: 10px;
  }
  
  .IG-posts a:hover {
    text-decoration: underline;
  }
  
  .eapps-instagram-feed {
    font-family: "Quicksand", sans-serif;
  }
  
  @media (max-width: 768px) {
    .intro-page h1 {
      margin-bottom: 0.5rem;
    }
  
    .intro-page p {
      margin-bottom: 2rem;
    }
  
    #book-background {
      height: 2400px;
    }
  
    #book-presentation {
      flex-direction: column;
      padding: 0 10%;
    }
  
    #book-presentation img {
      width: 100%;
    }
  
    #book-description {
      padding: 1em 0;
    }
  
    #book-description p {
      margin-bottom: 1em;
    }
  
    #quotes {
      flex-direction: column;
      margin: 2rem auto;
    }
  
    #quotes li {
      width: 75%;
      margin: 0 auto;
      padding-bottom: 2rem;
    }
  
    #quotes h4 {
      padding-bottom: 0.5em;
    }
  
    #quotes p {
      padding: 0 0.5em;
    }
  
    #mentions {
      padding: 1.5em 5%;
    }
  
    #mentions h2 {
      font-size: 3rem;
    }
  
    #book-launch {
      padding: 0 5%;
    }
  
    #photo-gallery {
      --s: 75px; /* control the size */
      --g: 10px; /* control the gap */
      --f: 2; /* control the scale factor */
      grid-template-columns: repeat(3, auto);
    }
  
    .custom-shape-divider-top-1711480004 svg {
      height: 41px;
    }
  
    #news-home {
      padding: 20px 10%;
      margin: 0 auto;
      background-color: rgb(99, 55, 97);
    }
  
    #news-home h2 {
      font-size: 2.5rem;
      margin: 1.25rem 0;
    }
  
    .IG-posts a {
      font-size: 1.25rem;
      color: rgb(255, 237, 217);
      margin: 0;
      padding: 0.5em;
    }
  }
  
  @media (min-width: 1700px) {
    #book-background {
      top: 400px;
    }
  }
  