body {
  background-image: url('sparkle-background.jpg');
  background-size: cover;       /* Makes the image cover the entire background */
  background-repeat: no-repeat; /* Prevents tiling */
  background-position: center;  /* Centers the image */
  background-attachment: fixed; /* Keeps the background fixed during scroll */
  color: white;                 /* Optional: improves text readability */
  color: black;
  font-family: serif;
}

.hero-box {
  background-image: url('/banner-image.jpg'); /* Replace with your banner image */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-size: 1.5em;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
}

.about-me {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ccc;
}

.bio {
  flex: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.nav-links a {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: #ffd700;
}