@font-face {
    font-family: inter;
    src: url(./assets/fonts/static/Inter-Regular.ttf) format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: inter;
    src: url(./assets/fonts/static/Inter-SemiBold.ttf) format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: inter;
    src: url(./assets/fonts/static/Inter-Bold.ttf) format('truetype');
    font-weight: 700;
}
body {
  padding: 0;
  font-family: inter, sans-serif;
  background-color:hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
 .card {
  background-color: hsl(0, 0%, 12%);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  width: 90%;
  max-width: 350px;
  box-sizing: border-box;
  margin: auto;
} 
img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin: 0.5rem 0;
  margin-bottom: 0.75rem;
}
.social-links li:last-child {
  margin-bottom: 0;
}

.social-links a {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 0.75rem;
  background: hsl(0, 0%, 20%);
  color: wheat;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
   transform: scale(1.05);
}
.name {
  font-size: 1.5rem;
  font-weight: 700;
 }

 .location {
  margin-bottom: 1rem;
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  font-size: 14px;
 }

 .bio {
  font-size: 14px;
  margin-bottom: 1.5rem;
 }
 
.attribution {
  font-size: 11px;
  margin-top: 2rem;
  text-align: center;
  visibility: hidden;
}
.attribution a {
  color: hsl(228, 45%, 44%);
  text-decoration: none;
}

@media (min-width: 700) {
 .card{
  max-width: 400px;
  padding: 2.5rem;
 } 
}

@media (min-width: 1440px) {
  .card {
    max-width: 500px;
    padding: 3rem;
  }
}