/* Reset some default browser styles */
body,
h1,
h2,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-post {
    margin-bottom: 40px;
}

.post-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-meta {
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

.post-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.post-content {
    margin-bottom: 20px;
    text-align: justify;
}

.code-example {
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow-x: auto;
}

.code-example pre {
    margin: 0;
}

.blockquote {
    border-left: 2px solid #333;
    padding-left: 10px;
    margin-bottom: 20px;
    font-style: italic;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}