body {
    background-color: #1a1a1a;
    color: #f2f2f2;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #292929;
    height: auto;

  }
  
  .logo {
    height: 125px;
    padding: 2%;
    margin: 0 auto;
  }
  .sales-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Updated property */
    grid-gap: 10px;
    justify-items: center;
    align-items: center;
    list-style-type: none;
  }

  @media (max-width: 1000px) {
    .sales-list {
      grid-template-columns: repeat(2, 1fr); /* Updated property for smaller screens */
    }
  }

  @media (max-width: 500px) {
    .sales-list {
      grid-template-columns: repeat(1, 1fr); /* Updated property for smaller screens */
    }
  }
  
  .card-item {
    text-align: center;
    width: 45%;
    max-width: 400px;
    background-color: rgba(169, 169, 169, 0.432);
    padding: 2%;
    margin: 15px;
    box-shadow: 15px 15px 15px aliceblue;
    border-radius: 15px;
  }
  .item-name {
    margin-top: 20px;
    font-size: 1.0rem;

  }
  
  .item-price {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  
  .item-image {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  
  
  .hours {
    background-color: #292929;
    color: #f2f2f2;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
  }
  
  .dark {
    max-width: 600px;
  }
  
  .dark h2 {
    font-size: 24px;
    margin-top: 0;
  }
  
  .dark p {
    margin: 10px 0;
    font-size: 18px;
  }
  
  .dark strong {
    font-size: 20px;
    display: block;
    margin-top: 10px;
  }

  