@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');


:root{
    
    --Yellow: hsl(47, 88%, 63%);

    --White: hsl(0, 0%, 100%);

    --Gray-500: hsl(0, 0%, 42%);
    --Gray-950: hsl(0, 0%, 7%);

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Figtree", sans-serif;
}

p{
    font-size: 16px;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Yellow);
    width: 100%;
    min-height: 100vh;
}
.card{
    background-color: var(--White);
    width: 300px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.5rem;
    box-shadow: 5px 5px 0 black;

}
.card img{
    width: 100%;
    border-radius: 0.5rem;
}
.card span{
    width: 80px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 1rem 0;
    border-radius: 5px;
    background-color: var(--Yellow);
}
.card :nth-child(3){
    color: var(--Gray-950);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.card h3{
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}
.card h3:hover{
    color: var(--Yellow);
}
.card p{
    color: var(--Gray-500);
}
.avatar-container{
    display: flex;
    align-items: center;
}
.avatar-container img{
    width: 32px;
    height: 32px;
    margin-right: 00.5rem;
    margin: 0.5rem 0.5rem 0.5rem 0;
}
.avatar-container p{
    color: var(--Gray-950);
}