body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 40px;
  color: #444;
}

h1 {
  text-align: center;
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
}

.lista {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.lista li a {
  text-decoration: none;
  background-color: #ddd;
  color: #333;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.lista li a:hover {
  background-color: #bbb;
  transform: translateY(-1px);
}

.lista li a:hover:after {
  right: 8px;
  color: #333;
}
.flechita {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #333;
  background-color: #e0e0e0;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.flechita:hover {
  background-color: #bbb;
  color: #000;
}