/* Global Styles */
* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
  }
  
  body {
    background-color: #121212; /* Dark background for contrast */
    box-sizing: border-box;
  }
  
  .middle {
    padding: 150px 300px;
  }
  
  .header {
    margin-bottom: 40px;
  }
  
  .header h1 {
    font-family: "VW";
    letter-spacing: 1px;
  }
  
  /* Flexbox container */
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .item {
    width: 250px;
    border-radius: 16px;
    margin: 0 12px 12px 0;
    padding: 24px;
    background-color: #191919;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .item img {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .item h3 {
    margin-bottom: 15px;
    font-size: 14px;
    color: #C0C0C0;
  }
  
  /* Pricing and Buttons */
  .bottom {
    display: block;
    margin-top: auto;
  }
  
  .price {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
  }
  
  .button-cnt {
    width: 100%;
  }
  
  .button {
    display: flex;
    border-radius: 4px;
    background-color: #C0C0C0;
    width: 100%;
    height: 32px;
    color: white;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
  }
  
  .button:hover {
    background-color: #d9dbd9;
    border-color: #d9dbd9;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    /* Adjusting padding for the middle section */
    .middle {
      padding: 80px 20px;
    }
  
    /* Adjust the header's h1 for better readability */
    .header h1 {
      font-size: 24px;
    }
  
    /* Adjust the container to center items */
    .container {
      gap: 15px;
      justify-content: center;
    }
  
    .item {
      width: 100%;
      max-width: 300px;
      padding: 15px;
    }
  
    .item h3 {
      font-size: 16px;
    }
  
    .price {
      font-size: 18px;
    }
  
    .button {
      height: 40px;
    }
  }
  
  @media screen and (max-width: 480px) {
    /* Adjusting font size for smaller devices */
    .header h1 {
      font-size: 20px;
    }
  
    .item {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
    }
  
    .item h3 {
      font-size: 14px;
    }
  
    .price {
      font-size: 16px;
    }
  
    .button {
      font-size: 14px;
      height: 36px;
    }
  }