body, html{
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(0, 0%, 8%);
    font-family: "Inter", sans-serif;
}

.main-wrapper{
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.card{
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 500px;
    align-items: center;
    border-radius: 15px;
    color: white;
    background-color: hsl(0, 0%, 12%);
}

.profile-img{
    width: 70px;
    height: 70px;
    margin-top: 40px;

}

.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.name{
    font-size: 22px;
    margin-top: 20px;
}

.origin{
    font-size: 12px;
    color: hsl(75, 94%, 57%);
    margin-top: 5px;
}

.description{
    font-size: 12px;
    margin-top: 20px;
    color: hsl(0, 0%, 60%);
}

.buttons{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.buttons button{
    width: 275px;
    height: 40px;
    border-style: none;
    background-color: hsl(0, 0%, 20%);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

button:hover{
    background-color: hsl(75, 94%, 57%);;
    color: black;
}