/* Reset basic margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #ffffff;
  color: #333;
  font-family: sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 1rem;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a i {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-weight: 900; /* brands icons are usually solid weight */
  color: #007acc;
  font-size: 2rem;
  transition: color 0.3s;
}

nav a:hover i {
  color: #005f99;  /* darker blue on hover */
}