body {
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    background-color: #f9f9f9;
}
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.blog-post {
    margin-bottom: 40px;
}
.blog-post h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.blog-post time {
    color: #777;
    font-size: 0.9em;
}
.blog-post a {
    text-decoration: none;
    color: #4a90e2;
}
.blog-post a:hover {
    text-decoration: underline;
}
.back-home {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.back-home:hover {
    background-color: #357ABD;
}