body {
	background-color:	whitesmoke;
	font-family:		'IBM Plex Serif', serif;
	font-size:		12pt;
	overflow-x:		hidden;
}

a {
	color:			grey;
	text-decoration:	none;
}

a:hover {
	color:			dimgrey;
	text-decoration:	underline;
}

#main {
	position:		absolute;
	left:			50%;
	top:			50%;
	transform:		translate(-50%, -50%);
	width:			95%;
	height:			85%;
	max-width:		1100px;
	max-height:		1000px;
	background-color:	white;
	display:		flex;
	flex-direction:		row;
	box-shadow:		0 0.5em 1em grey;
}

.nav {
	min-width:		150px;
	overflow:		none;
	font-size:		1.25em;
	display:		flex;
	flex-direction:		column;
	margin:			1em;
}

.nav a {
	display:		block;
}

.navLinks {
	height:			100%;
}

.navContact {
	font-size:		0.8em;
}

.content {
	width:			100%;
	overflow-y:		auto;
	margin:			1em 1em 1em 0;
	line-height:		2em;
	font-size:		1.1em;
	padding-right:		1em;
}

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

.lightItalic {
	color:			dimgrey;
	font-style:		italic;
}

.cardsContainer p {
	display:		block;
	background-color:	whitesmoke;
	border:			1px solid whitesmoke;
	padding:		1em;
}

.publogo {
	display:		none;
	float:			left;
	height:			4em;
	width:			4em;
	object-fit:		contain;
	margin-right:		1em;
}

@media only screen and (max-width: 650px) {
	body {
		background-color:	white;
	}

	#main {
		position:		absolute;
		left:			0;
		top:			0;
		transform:		initial;
		max-width:		initial;
		max-height:		initial;
		width:			100%;
		height:			auto;
		background-color:	white;
		display:		block;
		flex-direction:		initial;
		box-shadow:		initial;
	}

	.nav {
		display:		flex;
		height:			auto;
		background-color:	white;
		outline:		1em 0 solid white;
		margin:			0 1em;
	}

	.nav > div {
		margin:			0;
	}

	.navLinks {
		height:			initial;
	}

	.content {
		width:			initial;
		padding:		initial;
		margin:			1em;
		margin-top:		0px;
		max-width:		100%;
	}

	.menuCollapse {
		display:		none;
	}

	.menuCollapse > div:last-child {
		margin:			4em 0 0 0;
	}

	.navContact {
		display:		none;
	}

	.contentContact {
		display:		block;
	}
}

@media only screen and (min-width: 651px) {
	::-webkit-scrollbar {
		width:			5px;
	}

	::-webkit-scrollbar-track {
		background:		white;
	}

	::-webkit-scrollbar-thumb {
		background-color:	silver;
		border-radius:		5px;
		visibility:		hidden;
	}

	::-webkit-scrollbar-thumb:hover {
		background-color:	darkgrey;
	}

	div:hover::-webkit-scrollbar-thumb {
		visibility:		visible;
	}

	.cardsContainer p:hover {
		border:			1px solid dimgrey;
	}

	.contentContact {
		display:		none;
	}
}
