@import url('https://fonts.cdnfonts.com/css/avantgarde-bk-bt-2');



body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'AvantGarde Bk BT', 'Century Gothic', sans-serif;
  line-height: 1.6;
}

.container {
  display: flex;
  margin-top: 4rem;
  justify-content: center;

}

.left {
  float: left;
  max-width: 400px;
  padding: 0;
  margin-top: 30px;
  margin-left: -100px;
}

.right {
  float: left;
  /*margin-left: -100px;*/
  max-width: 500px;
  margin-top: 30px;
}

.logos {
  width: 50px;
  border-radius: 50%;
  border: 1px solid #fff;

}

.book-cover {
  width: 60%;
  height: auto;
  display: inline;
  margin: 0 auto;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.icon-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-row a {
  font-size: 2.2rem;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.icon-row a:hover {
  box-shadow: #fff 0px 0px 1px;
  transform: scale(1.1);
}

.quote {
  text-align: right;
  font-size: 0.76rem;
  margin-top: 40px;
  max-width: 900px;
}

.quote cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .icon-row a {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}


/* Amaga per defecte les versions mobile */
.book-mobile {
  display: none;
  align-items: center;
  gap: 15px;
}

.book-thumb {
  width: 80px;
  height: auto;
}

.book-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.book-author {
  font-size: 1rem;
  margin: 0;
  color: #ccc;
  font-style: italic;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

/* Responsive per mòbil */
@media (max-width: 768px) {
  .desktop {
    display: none;
  }

  .left,
  .right {

    margin-left: 0;
  }

  .mobile {
    display: flex;
  }

  .book-mobile {
    display: flex;

  }

  .left,
  .right {
    max-width: 100%;
  }
}