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

body{
    background-color: hsl(47, 88%, 63%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
}
.blog-card{
    border: solid 1px hsl(0, 0%, 0%);
    width: 100%;
    max-width: 350px;
    height: 450px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 10px 10px rgb(12 0 0);
    margin: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
}

.blog-card > img{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    
}

.tag{
    margin-block: 15px;
    padding: 5px 10px;
    font-weight: 800;
    width: fit-content;
    border-radius: 5px;
    background-color: hsl(47, 88%, 63%);
    border: 1px solid hsl(47, 88%, 63%);
}
.date{
    font-size: 12px;
    margin-bottom: 10px;
    color: hsl(0, 0%, 7%);
    font-weight: 400;
}
.title{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    
}
.description{
    color: hsl(0, 0%, 42%);
    font-size: 14px;
    margin-bottom: 10px;
}
.author{
    display: flex;
    flex-direction: row;
    font-size: 14px;
    font-weight: bold;
    padding-block: 10px;
}

.author > img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
.author > p{
    font-size: 14px;
    font-weight:800;
    line-height: 30px;
}