body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0;
}

header {
  background: #000;
  color: #fff;
  padding: 1.5rem;
}

.products {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem;
}

.product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 250px;
}

button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
}