*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
body{
    background-color: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.card{
    background-color: hsl(0, 0%, 12%);
    width: 420px;
    text-align: center;
    border-radius: 13px;
    padding-bottom: 30px ;
}
img{
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 45px 0px 25px;
}
.text{
    color: white;
}
.btn{
    background-color: hsl(0, 0%, 20%);
    margin: 13px 40px 17px;
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}
h3{
    color: hsl(75, 94%, 57%);
    font-weight: 600;
    font-size: medium;
    margin: 8px 0 5px;
}
h1{
    font-weight: 600;
}
p{
    font-size: medium;
    margin: 30px 0;
    font-weight: 500;
}
.btn:hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
}