body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.profile-card {
  background-color: #1e1e1e;
  color: white;
  width: 300px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile-card h2 {
  margin: 10px 0 5px;
  font-size: 22px;
}

.profile-card p {
  margin: 5px 0 20px;
  font-size: 14px;
  color: #9e9e9e;
}

.profile-card .location {
  color: #77ff77;
  font-size: 14px;
}

.profile-card button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.profile-card button.github {
  background-color: #b4cc13;
  color: black;
}

.profile-card button.default {
  background-color: #3a3a3a;
}

.profile-card button:hover {
  opacity: 0.9;
}