body
{
	font-size: 18px;
	line-height: 1.6;
	color: #dbdbdb;
	background-color: #000000;
	text-align: center;
	margin: 0;
	padding: 0;

	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.blog-content {
    max-width: 65ch;       
    margin: 4rem auto;    
    line-height: 1.7;     
    font-size: 1.1rem;    
    text-align: justify; 
}


.blog-content img {
    max-width: 100%;
    height: auto;
}

p, h1, h2, h3
{
	margin: 10px 0;
}

.site-title 
{
	font-style: italic;
	font-size: 18px;
	margin-bottom: 0px;
}

img
{
	max-width: 100%;
	height: auto;
	display: block;
	margin: 10px auto; 
	width: 520px;
}

a
{
	margin: 10px 0;
	color: #e8e8e8;
	text-decoration: underline;
	transition: color 0.2s ease;
}

a:hover
{
	color: #ffffff;
}

nav
{
	margin-top: 10px;
}

nav a
{
	margin: 0 5px;
	display: inline-block;
}

@media (max-width: 600px)
{
	body
	{
		padding: 15px;
	}

	nav a
	{
		display: block;
		margin: 10px 0;
	}
}