/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
	margin: 0;
	padding: 0;
	background-color: #0d0d0d;
	color: #e0e0e0;
	font-family: "Inter", sans-serif;
	/* line-height: 1.6; */
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	border-bottom: 2px solid #363636;
	background-color: #161616;
}

.left h1 {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
}

.right {
	width: 30%;
}
.right ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.right a,
.left a {
	color: #e0e0e0;
	text-decoration: none;
}

.right a:hover,
.left a:hover {
	color: #bb86fc;
}
main {
	max-width: 50%;
	margin: 2rem auto;
}

.intro h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.intro a {
	color: #bb86fc;
	text-decoration: none;
}

.intro a:hover {
	text-decoration: underline;
}

.tagline {
	font-style: italic;
	color: #999;
	margin-top: -10px;
}

.latest {
	margin-top: 2rem;
	padding: 1rem;
	background-color: #161616;
	border: 2px solid #363636;
	border-radius: 8px;
}

.latest ul {
	margin: 0 2rem;
	padding: 0;
}

.latest li {
	margin-bottom: 1rem;
}

.latest a {
	color: #bb86fc;
	text-decoration: none;
}

.latest a:hover {
	text-decoration: underline;
}

.posts li {
	margin-bottom: 1rem;
}

.posts a {
	color: #e0e0e0;
}

.posts a:hover {
	color: #bb86fc;
	text-decoration: underline;
}

.post-header {
	border-bottom: 2px solid #363636;
}

footer {
	text-align: center;
	padding: 1rem;
	border-top: 2px solid #363636;
	font-size: 0.9rem;
	color: #666;
}
