:root {
  --bg: #fff0f5;
  --card-bg: #ffffff;
  --text-color: #333;
  --accent: #d9b99b;
  --shadow: rgba(0, 0, 0, 0.05);
  --border-radius: 5px;
}

body {
  background-color: var(--bg);
  font-family: "Helvetica Neue", sans-serif;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

main.content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1,
h2 {
  display: none;
}

.book2 {
  background-color: white;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px var(--shadow);
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-contens h4 {
  margin-top: 0;
  color: var(--accent);
  color: red;
}

.text-contens p {
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px;
  border-top: 1px solid gold;
  border-bottom: 1px solid gold;
  background-color: #fff;
  font-size: 14px;
}

.links {
  margin-top: 1em;
}

.links img {
  max-width: 150px;
  height: auto;
  box-shadow: 3px 3px black;
  border: 1px solid black;
  border-radius: 0px;

}

.site-links,
.purchase-links {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.site-logo,
.shop-icon {
  height: 30px;
  width: auto;
  transition: transform 0.2s;
}

.site-logo:hover,
.shop-icon:hover {
  transform: scale(1.1);
}

span {
  display: inline-block;
  color: white;
  background-color: rgb(0, 174, 255);
  margin-left: 5px;
  padding: 0 6px;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .book2 {
    grid-template-columns: 1fr;
    /* text-align: center; */
  }

  h1,
  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .main.content {
    padding: 0 0.5rem;
  }

  .text-contens h4 {
    font-size: 1rem;
  }

  .text-contens p {
    font-size: 13px;
    padding: 0.5rem;
  }

  .site-links,
  .purchase-links {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-links a,
  .purchase-links a {
    display: inline-block;
    max-width: 22%;
  }

  .site-links img,
  .purchase-links img {
    width: 100%;
  }

  .site-logo,
  .shop-icon {
    height: 25px;
  }
}