.article {
    margin: 20px;
}

.subject {
    color: brown;
}

.title {
    font-weight: bold;
}

.date {
    font-style: italic;
    margin-bottom: 10px;
}

.content {
    text-align: justify;
}

.hint{
    text-align: center;
    columns: #808080;
}
/* footer {
    clear: both;
    display: block;
    text-align: center;
    margin: 0px auto;
    position: absolute;
    bottom: 20px;
    width: 100%;
} */


/* CSS for Top bar */
#top-bar {
    height: 50px;
    background-color: #0D98BA;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* CSS for site title */
#site-title {
    font-weight: bold;
    font-size: 2em;
}

/* CSS for footer */
#footer {
    flex-direction: column;
    height: 50px;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CSS for content area */
#content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

/* CSS for blog post list */
#blog-post-list {
    width: 70%;
}

/* CSS for blog post */
.blog-post {
    margin-bottom: 20px;
    border: 1px solid #F6C325;
    padding: 10px;
}

/* CSS for sidebar */
#sidebar {
    width: 27%;
}

.blog-post p:nth-child(2) {
    font-style: italic;
}