/* General body styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
    color: rgb(42, 42, 43);
    margin: 0;
    padding: 0;
}

h1 {
    color: rgb(255, 255, 255);
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #69b0bd;
}

h5 {
    text-align: center;
    font-size: 18px;
    color: #555;
}

p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
}

i {
    font-style: italic;
}

main {
    margin-bottom: 50px; /* Adjust this value for more/less space */
}

/* Style for post titles */
h2.post-title {
    font-size: 24px;
    font-weight: bold;
    color: #7d1e1e;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Style for post content */
.post-content {
    font-size: 18px;
    color: #272730
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-content p {
    margin-bottom: 15px;
}

/* Style for blog post sections */
#blog-posts {
    padding-top: 20px; /* Adds padding to the top of the blog section */
}
#blog-posts h2 {
    text-align: center;
}
#blog-posts article {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#blog-posts article h3 {
    color: #333;
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

#blog-posts article p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}
.blog-post {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.read-more {
    text-align: right;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
}
.read-more:hover {
    color: #0056b3;
}

/* General container styling */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
