body {
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    background-color: #fff;
    
  }
  
  .product-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .img{

    height: 350px;
  }

  .text{

    font-size:30px;
    color: rgb(162, 0, 0);
    font-weight: bold;
  }

  a{
    text-decoration: none;  
  }