body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0d1117; /* Dark background */
  color: #c9d1d9; /* Light text */
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #161b22; /* Slightly lighter than body */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px #58a6ff55;
}

h1 {
  margin: 1rem 0 0.2rem;
  font-size: 2rem;
  color: #58a6ff; /* Light blue */
}

h2 {
  border-bottom: 2px solid #30363d;
  padding-bottom: 4px;
  margin-top: 2rem;
  color: #79c0ff;
}

.section {
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "• ";
  color: #58a6ff;
  font-weight: bold;
}

.footer {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #8b949e;
}
