:root{
    --yellow: hsl(47, 88%, 63%);
    --white: hsl(0, 0%, 100%);
    --gray-500: hsl(0, 0%, 42%);
    --gray-950: hsl(0, 0%, 7%);
}

*{
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    font-size: 16px;
    font-family: "Figtree", sans-serif;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
}

article{
    margin: 0  auto;
    width: 384px;
    background-color: white;
    border-radius: 20px;
    border-style: solid;
    border-width: 1.5px;
    box-shadow: 8px 8px var(--gray-950);
    padding: 24px;
}

#type{
    background-color: var(--yellow);
    font-weight: 900;
    font-size: 0.875rem;
    height: 27px;
    border-radius: 3px;
    margin-top: 8px;
    margin-bottom: 4px;
}

h5{
    color: var(--gray-950);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 150%;
}

h1{
    color: var(--gray-950);
    font-size: 1.5rem;
    font-weight: 900;
}

h1:hover{
    color: var(--yellow);
    cursor: pointer;
}

#text-card{
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.5;
}

#user-name{
    font-weight: 900;
    font-size: 0.875rem;
}

