* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", "Serif";
}

body {
    align-items: center;
    justify-content: center;
    display: flex;
    background: hsl(0, 0%, 8%);
    height: 100vh;
}

.card{
    background: rgb(31, 31, 31);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    /* max-width: 100%; */
    width: 350px;
}

img {
    border-radius: 50%;
    max-width: 80px;
}

h1 {
    font-size: 22px;
    font-weight: 500;
    padding: 20px 0 10px 0;
}

h4 {
    color: hsl(75, 94%, 57%);
    font-size: 12px;
    font-weight: 700;
    padding-bottom: 25px;
}

p {
    font-weight: 500;
    font-size: 12px;
    padding-bottom: 22px;
    color: hsl(0, 0%, 67%);
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
    background: hsl(0, 0%, 20%);
    padding: 13px 20px;
    min-width: 250px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 15px;
}

li:last-child {
    margin-bottom: 0;
}