body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9fb;
  color: #333;
  padding: 2rem;
}

main.clase-contenido {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h1, h2 {
  color: #5a2c82;
  text-align: center;
}

ul {
  list-style: disc inside;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  background-color: #5a2c82;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  text-align: center;
}

.button:hover {
  background-color: #7e4bb1;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.galeria img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}
