body {
    background-color: #FFF0F5;  /* Light pink background */
    color: #DB7093;  /* Pale violet red text */
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

a {
    color: #C71585;  /* Medium violet red for links */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #FF69B4;  /* Hot pink for hover */
    text-decoration: underline;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #DB7093;  /* Pale violet red for headings */
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 1rem;
    border-bottom: 1px solid #FFC0CB;  /* Pink border */
    padding-bottom: 1rem;
    background-color: #FFE4E1;  /* Misty rose background for list items */
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(219, 112, 147, 0.2);  /* Soft pink shadow */
}

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

.post-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #FFE4E1;
    border-radius: 8px;
    border-bottom: 1px solid #FFC0CB;
}

.post-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.post-date {
    display: block;
    color: #C71585;
    margin-bottom: 1rem;
}

.post-excerpt {
    margin: 1rem 0;
    line-height: 1.6;
    color: #DB7093;
}

.read-more-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #FF69B4;
    color: #FFF0F5;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #DB7093;
    text-decoration: none;
    transform: translateY(-2px);
}
