body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.2;
    color: #333;
    margin-top: 1em;
}

a {
    color: #0066cc;
    text-decoration: none;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    color: #fff;
}

header nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

main {
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    font-size: 1em;
    color: #888;
    opacity: 0.8;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.author {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.author img {
    width: 50px;
    height: 50px;
    margin-right: 1em;
    border-radius: 50%;
}

.author p {
    margin: 0;
}

.welcome-message {
    text-align: center;
    margin: 20px 0;
}

.post-card {
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.post-card h2 {
    margin-top: 0;
}

.post-card a {
    color: #0070f3;
    text-decoration: none;
}

.post-card a:hover {
    text-decoration: underline;
}