html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #1e1e1e;
  color: #f0f0f0;
  font-family: "Courier New", Courier, monospace;
}


.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #f0f0f0;
}

h1 {
  margin: 0.5rem 0;
  font-weight: normal;
}

p {
  color: #ccc;
  margin-bottom: 2rem;
}

.link {
  display: flex;
  align-items: center; /* ⬅️ Questo allinea verticalmente al centro */
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  width: 90%;
  max-width: 400px;
  margin: 0.75rem auto;
  background: #333;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  font-family: inherit;
  transition: background 0.2s;
  text-decoration: none;
  line-height: 1.2;
}

.link:hover {
  background: #555;
}

.link .icon {
  width: 30px;
  height: 30px;
  filter: invert(1); /* Per renderla bianca, se l'icona è nera */
  display: block;
}

.footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #888;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem;
}

.wrapper > .footer {
  margin-top: auto;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}

.footer a {
  color: #aaa;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

