body {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  font-family: Arial;
  padding: 20px;
}
h1 {
  display: flex;
  align-items: center;
  gap: 10px;
}
#product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  border: 1px solid #ccc;
  padding: 10px;
  width: 300px;
  height: 500px;
  background-color: whitesmoke;
   display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  border-radius: 10px;
}
button {
  margin-top: 10px;
}
.btn-link {
  display: inline-block;
  background-color:rgb(70, 203, 198);
  color: white;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  margin-right: 5px;
  transition: background-color 0.3s;
}

.btn-link:hover {
  background-color: #0056b3;
  text-decoration: none;
}
.card-buttons {
  display: flex;
  justify-content: space-between;
}
.card:hover {
  transform: scale(1.02);
}