html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  height: 100%;
  width: 100%;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3efe8;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  text-align: center;
}

main figure {
  margin: 0;
}

main img {
  max-width: 100%;
  height: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.icon-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.icon-list a {
  color: #555; /* color neutro, puede ajustarse */
  transition: color 0.3s ease;
}

.icon-list a:hover {
  color: #2e86de; /* azul profesional, se puede personalizar */
}

.icon {
  width: 32px;
  height: 32px;
}
