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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree', 'sans-serif';
}

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

.card{
    width: 350px;
    height: 470px;
    background-color: hsl(0, 0%, 100%);
    /* border: 25px black; */
    border-radius: 15px;
    padding: 7px;
    text-align: left;
    box-shadow: 8px 8px ;
}

img{
    border-radius: 10px;
}

.tag{
    background-color: hsl(47, 88%, 63%);
    width: 72px;
    border-radius: 5px;
    padding: 5px;
}

.subtag{
    padding-top: 7px;
    padding-bottom: 5px;
}

h3{
    padding: 8px 0 2px 0;
}

.para{
    padding: 10px 0 6px 0
}

#avatar{
    display: flex;
    flex-direction: row;
    padding-top: 18px;
}

.author{
    /* margin-top: 20px; */
    padding-top: 20px;
    padding-left: 8px;
}