* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  background: #fafafa;
  color: #222;
}

.container {
  width: 100%;
  max-width: 500px;
  padding: 40px 24px;

  text-align: center;
}

.profile-image {
  width: 220px;
  max-width: 100%;
  height: auto;

  border-radius: 8px;
  margin-bottom: 24px;
}

h1 {
  margin: 0 0 24px;

  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links a {
  display: block;

  padding: 12px 16px;

  color: #222;
  text-decoration: none;

  border: 1px solid #ddd;
  border-radius: 6px;

  transition: background 0.2s, border-color 0.2s;
}

.links a:hover {
  background: #f0f0f0;
  border-color: #bbb;
}
