body {
    background-color: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Figtree, serif;
    font-size: 16px;
    height: 100vh;
}

.blog-post {
    background-color: white;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    border: solid;
    box-shadow: 8px 8px black;
}

.image-box {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.image-box img {
    width: 90%;
    border-radius: 14px;
}

.content-box {
    margin: 18px;
}

.post-tag {
    background-color: hsl(47, 88%, 63%);
    width: 90px;
    height: 30px;
    border-radius: 3px;
    text-align: center;
    line-height: 30px;
    font-weight: 800;
}

.post-date {
    margin-top: 12px;
}

.post-title {
    font-weight: 800;
    margin-top: 16px;
}

.post-content {
    color: hsl(0, 0%, 42%);
    margin-top: 20px;
}

.post-author img {
    width: 35px;
    margin-right: 8px;
}

.post-author {
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-top: 20px
}
