@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

body{
    background-color: hsl(47, 88%, 63%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 3rem;
}

.card{
    background-color: hsl(0, 0%, 100%);
    box-sizing: border-box;
    width: 384px;
    height: 522px;
    border-radius: 20px;
    box-shadow: 10px 10px 0 black;
    padding: 24px;
    font-family:"Figtree", serif;
    line-height: 130%;
    border: 1px solid black;
}

#img_card{
    border-radius: 10px;
    width: 100%;
}

#etiqueta{
    background-color: hsl(47, 88%, 63%);
    width: 82px;
    height: 29px;
    margin-top:15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

#tittle:hover{
    color: hsl(47, 88%, 63%);
    cursor: pointer;
}

.user{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: bold;
}

#avatar_user{
    width: 32px;
}

@media (max-width:375px){
    .card{
        width: 327px;
        height: 501px;
    }
}