body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}
header {
    text-align: center;
    margin-bottom: 40px;
}
h1 {color: #2c3e50;line-height: 65%;}
.blog-list {
    list-style: none;
    padding: 0;
}
.blog-item {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
	a {text-decoration: none;}
    h1 a {color:#605f5f;font-size:16px;font-weight:400;}
	h1 a:hover{color:#fd964c;font-weight:bolder;}
}
.blog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.blog-title {
    color: #3498db;
    margin-top: 0;
}
.blog-meta {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.blog-excerpt {
    margin-bottom: 10px;
}
.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}
.read-more:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    margin-top: 40px;
    color: #7f8c8d;
    font-size: 0.9em;
}
