/* blog.css */

.diary-index-category {
    font-family: 'VT323', monospace;
    font-size: 22px;
    color: var(--header-color);
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--header-color);
    padding-bottom: 5px;
}

.diary-post-link {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--link-color);
    text-decoration: none;
    cursor: pointer;
}

.diary-post-link:hover {
    text-decoration: underline;
}

.diary-post-content h2 {
    color: var(--header-color);
    margin-top: 0;
    font-size: 24px;
}

.diary-post-content p {
    line-height: 1.6;
    font-size: 16px;
}