body {
    max-width: 700px;
    margin: 0 auto;
    font-family: sans-serif;
    padding: 40px;
    line-height: 1.6;
}

header h1 a {
    text-decoration: none;
    color: black;
}

.post-list {
    list-style: none;
    padding: 0;
}

.post-list li {
    margin-bottom: 15px;
}

.date {
    font-size: 0.9em;
    color: #777;
}

.post h2 {
    margin-bottom: 5px;
}

.post-image {
    display: block;
    max-width: 65%;      /* never exceed the width of the text column */
    height: auto;         /* preserve aspect ratio */
    margin: 20px auto;    /* vertical spacing + center the image */
    border-radius: 6px;   /* optional */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post {
    background: #fff;
    padding: 20px 30px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.7;
    color: #333;
    background-color: #fafafa;
}

.post-image {
    max-width: 100%;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}


header a:hover {
    color: #ff4081;
}

.post {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.post-list a {
    text-decoration: none;       /* remove underline */
    color: #3883de;              /* match your main link color */
    font-weight: 600;
    transition: color 0.3s, transform 0.2s;
}

.post-list a:hover {
    color: #ff4081;              /* highlight on hover */
    transform: translateX(4px);  /* subtle shift like a button hover */
}

