<style>
    body {
      font-family: 'Roboto Slab', serif;
      font-weight: 300;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #555;
      line-height: 1.7;
    }
    header {
      text-align: center;
      padding: 1rem;
    }
    header img {
      width: 350px;
      height: auto;
    }
    .topbar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
    }
    nav {
      flex-grow: 1;
    }
    nav ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    nav li {
      position: relative;
    }
    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 300;
      text-transform: uppercase;
      font-family: 'Roboto', sans-serif;
    }
    .social img {
      width: 28px;
      height: 28px;
    }
    

/* Grundstil för navigation */
.topbar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

/* Dölj meny i mobil */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .topbar nav ul {
    display: none;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 1rem;
  }

  .topbar nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .social {
    margin-top: 1rem;
  }
}

    .main-content {
      max-width: 750px;
      margin: 2rem auto;
      padding: 0 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      align-items: flex-start;
    }
  
      .book-coverett {
      flex: 0 0 800px;
    }
    .book-coverett img {
      width: 100%;
      height: auto;
    }
  
    .book-cover {
      flex: 0 0 300px;
    }
    .book-cover img {
      width: 75%;
      height: auto;
    }
    .book-text {
      flex: 1;
      min-width: 250px;
      font-family: 'Roboto Slab', serif;
  font-weight: 200; 
       font-size: 1.0rem;
      margin-bottom: 1.5rem;
      color: Grey;
      line-height: 2;
    }
    h1 {
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      font-size: 2rem;
      margin-top: 0;
      color: Black;
            line-height: 1;

    }
    .book-details {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
    .book-info {
      margin-bottom: 2rem;
    }
    
    
    .anfang::first-letter {
  float: left;
  font-size: 7rem;
  line-height: 0.5;
  padding: 0.1rem 0.3rem 0 0;
  margin-right: 0.1rem;
  color: #007BFF; 
  font-weight: 200;
  font-family: 'Georgia', serif;
  font-style: italic;
}
    

    .button {
      display: block;
      background: #007BFF;
      color: white;
      padding: 0.75rem 1.5rem;
      margin: 2rem 0;
      text-decoration: none;
      border-radius: 4px;
      text-align: center;
      width: fit-content;

      font-family: 'Roboto', sans-serif;
  font-weight: 300;  
       text-transform: uppercase;
       font-size: 0.9rem;
      
    }
    hr {
      margin: 3rem auto;
      max-width: 800px;
    }
    .synopsis {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1rem 2rem;
      font-family: 'Roboto Slab', serif;
    }
    .carousel-title {
      font-family: 'Roboto Slab', serif;
      font-size: 1.5rem;
      text-align: center;
      font-weight: 700;
      margin-top: 2rem;
    }
  </style>
  <script>
    function toggleMenu() {
      var menu = document.getElementById('menu');
      menu.classList.toggle('active');
    }
  </script>