* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: monospace;
	font-size: 16px; /* Increased base font size */
	line-height: 1.8; /* Increased line height */
	max-width: 800px; /* Optimal reading width */
	margin: 0 auto;
	padding: 20px;
	background: white;
	color: rgba(0, 0, 0, 0.84); /* Slightly softer black */
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	border-radius: 5px;
}

nav {
	border-bottom: 2px solid #000;
	padding: 10px 0;
	margin-bottom: 40px; /* Increased spacing */
}

nav a {
	text-decoration: none;
	color: black;
	font-weight: bold;
	font-size: 1.2em;
}

h1 {
	font-size: 2.5em; /* Larger headlines */
	line-height: 1.2;
	margin: 1.5em 0 0.5em;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 1.8em;
	line-height: 1.3;
	margin: 1.8em 0 0.5em;
	letter-spacing: -0.01em;
}

p {
	margin: 1.5em 0; /* More breathing room */
}

/* Links with subtle animation */
a {
	color: black;
	text-decoration: none;
	background: linear-gradient(to bottom, transparent 90%, rgba(0, 0, 0, 0.2) 90%);
	background-size: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.2s ease;
}

a:hover {
	background-size: 100% 100%;
}

/* Post list styling */
.post-item {
	margin: 2em 0; /* More space between posts */
	padding: 1.5em;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	transition: all 0.2s ease;
}

.post-item:hover {
	background: #fafafa;
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.post-item .title {
	font-weight: bold;
	font-size: 1.5em;
	line-height: 1.3;
	margin-bottom: 0.5em;
}

.post-date {
	font-size: 0.9em;
	color: rgba(0, 0, 0, 0.6);
	margin: 0.8em 0;
}

/* Article content */
article {
	margin: 2em 0;
}

article p {
	font-size: 1.1em;
	letter-spacing: -0.003em;
}

/* Code blocks with better contrast */
pre {
	background: #f6f8fa;
	padding: 1.2em;
	overflow-x: auto;
	margin: 1.5em 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	font-size: 0.9em;
	line-height: 1.6;
}

/* Tables with improved spacing */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em 0;
	font-size: 0.95em;
}

th,
td {
	border: 1px solid rgba(0, 0, 0, 0.15);
	padding: 0.8em 1em;
	text-align: left;
}

th {
	font-weight: bold;
	background-color: #f6f8fa;
}

tr:nth-child(even) {
	background-color: #fafafa;
}

tr:hover {
	background-color: #f6f8fa;
}

/* Post excerpt */
.post-excerpt {
	color: rgba(0, 0, 0, 0.7);
	font-size: 1em;
	line-height: 1.6;
	margin-top: 0.8em;
}

/* Footer with more breathing room */
footer {
	margin-top: 4em;
	padding-top: 2em;
	border-top: 2px solid rgba(0, 0, 0, 0.1);
	text-align: center;
	font-size: 0.9em;
	color: rgba(0, 0, 0, 0.6);
}

/* Add responsive adjustments */
@media (max-width: 720px) {
	body {
		font-size: 16px;
		padding: 15px;
	}

	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 1.6em;
	}
}
