:root {
  --green: hsl(75, 94%, 57%);
  --white: hsl(0, 0%, 100%);
  --gray-700: hsl(0, 0%, 20%);
  --gray-800: hsl(0, 0%, 12%);
  --gray-900: hsl(0, 0%, 8%);
}

body {
    background-color: var(--gray-900);
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 14px;
    line-height: .5;
    display: flex;
    justify-content: center;     
    align-items: center;         
    min-height: 100vh;           
    margin: 0;                   
    flex-direction: column;
    gap: 40px;                   
}

.profile-card{
    width: 300px;
    height: auto;
    background-color: var(--gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;

    
 }

 .profile-card__info{
    width: 100%;
    padding: 20px;
    text-align: center;
 }
.profile-card img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px;
}
.profile-card__name{
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.profile-card__location{
  font-size: 11px;
  color: var(--green);
}

.profile-card__bio{
    font-size: 11px;
    margin-top: 25px;
}
.profile-card__links{
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-card__links a{
    text-decoration: none;
    color: var(--white);
    font-size: 11px;
    background-color: var(--gray-700);
    margin:5px;
    padding: 10px 86px;
    border-radius: 5px;
    text-align: center;
}
.profile-card__links a:hover{
    color: var(--gray-700);
    background-color: var(--green);
}