#devlog-posts {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}
.devlog-post {
	max-width: 500px;
	margin: 25px;
}
main p {
	background-color: #e4dbde;
	max-width: 500px;
	margin: 25px auto;
	box-shadow: 0 0 10px 10px #e4dbde;
}
.devlog-post h3 {
	margin-bottom: 25px;
	padding-top: 15px;
}
a.devlog-post {
	text-decoration: none;
	color: inherit;
}
a:hover.devlog-post {
	text-decoration: underline;
	color: #9a9a9a;
}
@media (prefers-color-scheme: dark) {
	main p {
		background-color: #776e71;
		box-shadow: 0 0 10px 10px #776e71;
	}
}
