*{
    padding: 0;
    border: 0;
    box-sizing: border-box;
   
}
body{
    font-family: 'Inter', sans-serif;
        background-color: hsl(0, 0%, 8%);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 14px;
}
.avatar-image img{
    height: 88px;
    width: 88px;
    border-radius: 50%;
}
.card{
    background-color: hsl(0, 0%, 12%);
    color: hsl(0, 0%, 100%);
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
    text-align: center;
}
.card_name{
    margin: 15px 0 10px;
}
h1{
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 8px;

}
h5{
    font-weight: 600;
    font-size: 14px;
    color: hsl(75, 94%, 57%);
    margin-bottom: 20px;
}
p{
    font-weight: 400;
    font-size: 14px;
    color: hsl(0, 0%, 100%);
    margin-bottom: 20px;
}
.social-link{
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link{
font-size: 14px;
font-weight: 600;
background-color: hsl(0, 0%, 20%);
border-radius: 8px;
padding: 12px;
color: hsl(0, 0%, 100%);
}
.link:hover{
    background-color:hsl(75, 94%, 57%) ;
    color: hsl(0, 0%, 8%);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
}
.attribution{
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 11px;
  margin-top: 20px;
  text-align: center;
}

.attribution a{
  color: hsl(75, 94%, 57%);
 text-decoration: none;
  font-weight: 600;
}