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

nav {
    width: 100%;
}

.card {
    background-color: hsl(0, 0%, 12%);
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-radius: 0.75rem;
    width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-weight: 600;
    color: hsl(0, 0%, 100%);
    font-size: 1.5rem;
    line-height: 150%;
    margin: 0;
}

.location {
    font-weight: 700;
    color: hsl(75, 94%, 57%);
    font-size: 0.875rem;
    line-height: 150%;
}

.bio {
    font-weight: 400;
    color: hsl(0, 0%, 100%);
    font-size: 0.875rem;
    line-height: 150%;
    text-align: center;
}

.social-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.social-links a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 20%);
    display: block;
    width: 100%;
    border-radius: 0.5rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-weight: 700;
    transition: background-color 1s, color 1s;
    font-size: 0.875rem;
}

.social-links a:hover {
    color: hsl(0, 0%, 20%);
    background-color: hsl(75, 94%, 57%);
    transition: background-color 0.1s, color 0.1s;
}

.social-links a:focus {
  outline: 3px solid hsl(0, 0%, 12%);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .social-links a {
    transition: none;
  }
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/Inter-Bold.ttf");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/Inter-SemiBold.ttf");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/Inter-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}