body {
  background-color: lavender;
  font-family: Arial, sans-serif;
}

h1 {
  color: purple;
  text-align: center;
}

p {
  color: teal;
  font-size: 18px;
}

.tarjetas-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.tarjeta {
  width: 300px;
  border: 2px solid #333;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 3px 3px 10px gray;
  text-align: center;
}

.tarjeta h2 {
    color: #333;
}

.tarjeta p {
    color: #555;
    font-size: 16px;
}



