/* Importa il font */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

header {
  margin-bottom: 20px;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}

p {
  font-size: 16px;
  color: #666;
}

.links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.links li {
  margin: 10px 0;
}

.links a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #007acc;
  background: #e6f4ff;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.links a:hover {
  background: #007acc;
  color: #fff;
}

footer {
  font-size: 14px;
  color: #aaa;
  margin-top: 20px;
}

footer a {
  text-decoration: none;
  color: #007acc;
}

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