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

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

/* Navbar*/
.navbar {
	background-color: #3498db;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 900;
}
.navbar a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}
.navbar a:hover {
	text-decoration: underline;
}

/* Layout */
.layout {
	display: flex;
	justify-content: flex-start;
}
/* Sidebar */
.sidebar {
	min-width: 300px;
	background: #f0f0f0;
	padding: 15px;
	border: 1px solid #ddd;
}
.sidebar h2 {
	font-size: 1.2em;
	margin-bottom: 10px;
}
.sidebar a {
	text-decoration: none;
	color: #007bff;
	display: block;
	margin: 5px 0;
}

/* Main content */
.content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f9f9f9;
}

.content__container {
	max-width: 800px;
	margin-left: 20px;
	padding: 20px;
	flex: 1;
}
h1 {
	font-size: 2em;
	margin-bottom: 20px;
}
.post {
	margin-bottom: 40px;
}
.post-title {
	font-size: 1.5em;
	margin-bottom: 10px;
}
.post-meta {
	font-style: italic;
	color: #666;
	margin-bottom: 10px;
}
.post-content {
	line-height: 1.8;
	color: #333;
}
