@font-face {
    font-family: 'JMHTypewriter';
    src: url(' /fonts/JMH Typewriter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'JMHTypewriter';
    src: url(' /fonts/JMH Typewriter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'JMHTypewriter';
    src: url(' /fonts/JMH Typewriter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'JMHTypewriter';
    src: url(' /fonts/JMH Typewriter-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  * {
    margin: 0;
    padding: 0;
    font-family: sans-serif, 'JMHTypewriter', Arial;
    box-sizing: border-box;
  }
  
  .header {
    background-color: #03b9f6;
    padding: 20px 0;
    width: 100%;
  }
  
  .web-icon {
    border-radius: 20%;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
  }
  
  .logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }
  
  .brand-name {
    margin-left: 10px;
    font-size: 1.5em;
    font-family: 'JMHTypewriter';
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-link {
    font-family: 'JMHTypewriter';
    text-decoration: none;
    color: #333;
    font-size: 1em;
  }
  
  .nav-link:hover {
    color: #d5f500;
  }
  
  .nav-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-between; 
    width: 30px; 
    height: 20px; 
    cursor: pointer;
  }
  
  .nav-icon {
    width: 100%; 
    height: 3px; 
    background-color: #333; 
    border-radius: 2px; 
  }
  
  .show {
    display: flex;
    flex-direction: column;
  }

  .Trailer{
    display: grid;
    place-items: center;
    margin: 0 auto;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
  }
  
  
  
  @media (max-width: 768px) {
    .book-item {
      flex-direction: column;
      align-items: center;
    }
  
    .book-img {
      width: 100%;
      margin-bottom: 15px;
    }
  
    .book-details {
      text-align: center;
    }
  
    .nav-links {
      display: none; 
      flex-direction: column;
      gap: 10px;
      position: absolute;
      top: 60px;
      right: 10px;
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
  
    .nav-toggle {
      display: flex; 
    }
  
    .nav-links.active {
      display: flex; 
    }
  }