body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f5fdf5;
  color: #333;
}

header {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 80px;
}

h2 {
  color: #2e7d32;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 10px;
  padding: 15px;
  width: 200px;
  text-align: center;
  background-color: white;
}

button {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #1b5e20;
}

@media (max-width: 600px) {
  .productos {
    flex-direction: column;
    align-items: center;
  }
}
