body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #20232a;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}

nav a {
  margin: 0 1rem;
  color: #61dafb;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 0;
}

section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #eaeaea;
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.resume-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #61dafb;
  color: #20232a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.resume-button:hover {
  background-color: #21a1f1;
}