body {
    background-color:hsl(47, 88%, 63%) ;
    font-family: 'Figtree', sans-serif;
}

.card {
    margin: auto;
    width: 310px;
    height: max-content;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    box-shadow: 9px 9px rgb(0, 0, 0);
    border: 1px solid hsl(0, 0%, 0%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.card_image {
    min-width: 100%;
    width: auto;
    border-radius: 12px;
}

.tag {
    display: inline-block;
    width: max-content;
    margin-top:20px;
    background-color: hsl(47, 88%, 63%);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 850;
    color: rgb(0, 0, 0); 
    font-family: 'Figtree', sans-serif;
}

.date {
    font-size: 0.8rem;
    color: hsl(0, 0%, 0%);
    margin-top: 13px;
    font-weight: 500;
}

.title {
    font-size: 1.3rem;
    color: hsl(0, 0%, 0%);
    margin-top: 10px;
    font-weight: 800;
    font-family: 'Figtree', sans-serif;}

.description {
    font-size: 0.9rem;
    color: hsl(0, 0%, 42%);
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Figtree', sans-serif;
}

.author_info{
    display:inline-flex;
    align-items: center;
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-self: flex-start;
}

.author {
    font-size: 0.7rem;
    color: hsl(0, 0%, 0%);
    font-weight: 800;
    margin-left: 10px;
    font-family: 'Figtree', sans-serif;
}

.attribution{
    position:absolute;
    bottom: 5px;
}