/* styles.css */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: #2d3748;
}

h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

/* Homepage styles */
.posts {
    list-style: none;
    padding: 0;
}

.post-link {
    display: block;
    padding: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.post-link:hover {
    background-color: #f7fafc;
    transform: translateX(4px);
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Blog post styles */
.post-date {
    color: #718096;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.post-content {
    font-size: 1.125rem;
}

a {
    color: #4a5568;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
}
