.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product {
    width: 400px;
    margin: 20px;
    text-align: center;
    background-color: #f2f2f2;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .product-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .product-name {
    margin-top: 10px;
    color: green;
  }
  @media (max-width: 600px) {
    .product-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .product {
      width: 40%;
      max-width: 400px;
      margin: 20px;
      text-align: center;
      background-color: #f2f2f2;
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
  
    .product-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 50%;
    }
  
    .product-name {
      margin-top: 10px;
      color: green;
    }
  }
  @media (max-width: 480px) {
    .product-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .product {
      width: 35%;
      max-width: 400px;
      margin: 20px;
      text-align: center;
      background-color: #f2f2f2;
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
  
    .product-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 50%;
    }
  
    .product-name {
      margin-top: 10px;
      color: green;
      font-size: 1rem;
    }
    .view-details {
      background-color: green !important;
      color: #fff;
     font-size: 10px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
  }
  .view-details {
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #my-paragraph {
    color: red; /* Change text color to red */
    font-size: 20px; /* Change font size to 20 pixels */
    font-weight: bold; /* Make the text bold */
    /* Add any other CSS properties to modify the style as desired */
  }
  