/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Reset & General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

/* Card Styles */
.card {
  background-color: hsl(0, 0%, 12%);
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Profile Image */
.profile-img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Name */
h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Location */
.location {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Bio */
.bio {
  font-size: 14px;
  margin: 1rem 0;
  color: hsl(0, 0%, 80%);
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.btn {
  background-color: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.btn:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}

/* Attribution */
.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 1rem;
}

.attribution a {
  color: hsl(228, 45%, 44%);
  text-decoration: none;
}
