body{
    font-family: 'Inter', sans-serif;
    font-family: 400;
    font-size: 14px;
    position: relative;
    height: 100vh;
    margin:0;
    background-color: hsl(0, 0%, 8%);
    color: white;

}
.card{
    display: flex;
    flex-direction: column;
    width: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: hsl(0, 0%, 12%);
    border-radius: 12px;
    
}
.card-content{
    margin: 20px;
}
.card-details{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-details img{
    width: 100px;
    border-radius: 100px;
}
.card-details h2{
    margin-bottom: 10px;
}
.card-details h4{
    margin-top: 0;
    color: hsl(75, 94%, 57%);
    font-size: 12px;
}
.buttons{
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    font-weight: 700;
}
.buttons div{
    background-color: hsl(0, 0%, 20%);
    margin: 10px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border-radius: 5px;
}
.buttons a{
    text-decoration: none;
    color: inherit;
}

