*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background{
    background-color: hsl(47, 88%, 63%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 84%;
    max-width: 384px;
    background-color: hsl(0, 0%, 100%);
    border: 2px solid hsl(0, 0%, 7%);
    border-radius: 20px;
    box-shadow: 10px 10px hsl(0, 0%, 7%);
    padding: 20px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.blog-img{
    width: 100%;
    border-radius: 20px;
}

.blog-genre{
    background-color: hsl(47, 88%, 63%);
    border-radius: 4px;
    display: inline-block;
    padding: 5px 10px;
    font-weight: 900;
    margin: 20px 0 15px 0;
}

time{
    display: block;
}

.title{
    font-size: 20px;
    font-weight: 900;
    margin: 20px 0;
}

.title:hover{
    color: hsl(47, 88%, 63%);
}

.description{
    color: hsl(0, 0%, 42%);
    font-size: 14px;
} 

.author{
    display: flex;
    align-items: center;
    margin: 20px 0 10px 0;
}

.author img{
    width: 30px;
    margin-right: 10px;
}

.author-name{
    font-weight: 900;
    font-size: 15px;
}