.container {
    max-width: 800px;
    margin: 0 auto;
    border-radius:20px;
  }
  
  .product-card {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .product-title {
    font-size: 24px;
    margin-top: 10px;
  }
  
  .product-description {
    color: #888;
    margin-top: 10px;
  }
  
  .product-price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  .product-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .product-button:hover {
    background-color: #2980b9;
  }
  @media (max-width: 600px) {
    .container {
      max-width: 100%;
      padding: 10px;
      border-radius: 10px;
    }

    .product-card {
      padding: 12px;
      border-radius: 3px;
    }

    .product-title {
      font-size: 18px;
      margin-top: 6px;
    }

    .product-description {
      font-size: 14px;
      margin-top: 6px;
    }

    .product-price {
      font-size: 16px;
      margin-top: 12px;
    }

    .product-button {
      width: 100%;
      padding: 12px 0;
      font-size: 16px;
      margin-top: 14px;
    }
  }
