@font-face {
	font-family: 'Playfair';
	src: url('/playfair.ttf') format('truetype');
}

body ul {
	list-style-type: circle;
}

.title-bar {
	display: flex;
	align-items: baseline;
	justify-content: space-between; /* or use gap + wrap if stacking is needed */
	flex-wrap: wrap;
	gap: 1rem;
	margin-left: 6em;
	margin-right: 6em;
	margin-top: 2em;
	max-width: 50em;
	font-family: 'Playfair';
}

.post-title-bar {
	display: flex;
	align-items: baseline;
	justify-content: space-between; /* or use gap + wrap if stacking is needed */
	flex-wrap: wrap;
	gap: 0.5rem;
	font-family: 'Playfair';
}

.post-title-bar h2 {
	margin-top: 0;
}

.post-date {
	font-family: 'Playfair';
	color: #999;
	font-size: 0.9em;
}

.title-bar h1 {
  margin: 0;
}

.title-bar .links a {
  color: #007777;
  text-decoration: none;
	margin-right: 1em;
}

.title-bar .links a:hover {
  text-decoration: underline;
}
.main-container {
	margin-left: 6em;
	margin-right: 6em;
	max-width: 50em;
	font-family: 'Playfair';
}

@media (max-width: 600px) {
	.main-container, .title-bar {
		margin-left: 1em;
		margin-right: 1em;
		max-width: none;
	}
}

.post-link {
	text-decoration: none;
	color: #007777;
}

.post-link:hover {
	text-decoration: underline;
}

.art {
	max-width: 90%;
}

/* .post-link:visited { */
/* 	color: #224747; */
/* } */

hr {
	border: 0;
	border-top: 1px solid #999;
	margin: 1rem 0;
}

h1 {
	font-family: 'Playfair';
	font-size: 2rem;
	color: #1a1a1a;
}

h2 {
	font-family: 'Playfair';
	font-size: 1.5rem;
	color: #1a1a1a;
}

h3 {
	font-family: 'Playfair';
	font-size: 1.2rem;
	color: #1a1a1a;
}

p {
	color: #333;
	font-family: 'Playfair';
	font-size: 1rem;
}
