body {
    font-family: Arial, sans-serif;
    margin: 20px;
  }
  
  h1,
  h2 {
    color: #333;
  }
  
  ol {
    list-style-type: decimal;
    padding: 0;
  }
  
  li {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
  }
  
  .perfume-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .product-name {
    flex-grow: 1;
  }
  
  .quantity-input {
    width: 50px;
    text-align: center;
  }
  
  .total {
    margin-top: 20px;
    font-weight: bold;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  .logo {
    max-width: 200px; /* Maximum width on larger screens */
    height: auto; /* Maintain aspect ratio */
    width: 100%; /* Make the logo take up the full width of its parent */
  }
  .logo {
    max-width: 200px;
    height: auto;
  }
  
  /* On smaller screens, reduce the logo size */
  @media (max-width: 768px) {
    .logo {
      max-width: 150px; /* Smaller logo on tablets and below */
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      max-width: 100px; /* Even smaller on phones */
    }
  }
  .logo {
    width: 20vw; /* Logo width is 20% of the viewport width */
    height: auto;
    max-width: 200px; /* Ensure that the logo does not get too big on larger screens */
  }
  
  