
body
{
  background-color: #464646;
  color: #cccccc;
}


catalogue
{
	display: grid;
	grid-template-columns: 1fr;
	gap: 5px;
	width: 600px;
	margin: 0 auto;
}

post
{
	
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 10px;
	margin: 0 0;
	
	
	border: 1px solid #ccc;
	padding: 10px;
	background-color: #323952;
	border-radius: 5px;
	
}

post caption
{
	display: block;
}

post img
{
	width: 100%;
	height: auto;
	//max-width:100%;
	display:block;
}

post a
{
	display: block;
	font-weight: bold;
	margin-bottom: 8px;
	font-size: 1.5em;
	text-align:left;
	border-bottom: 1px solid #ccc;
	color: inherit;
	text-decoration: none;
}

post a:visited
{
	color: inherit;
	text-decoration: none;	
}

a
{
	color: inherit;
}

post abstract
{
	display: block;
}

article
{
	display: grid;
	grid-template-columns: 1fr;
	gap: 5px;
	width: 600px;
	margin: 0 auto;
}