* {
	box-sizing: border-box;
}

body{
	background-color: #121212;
	font-family: Arial, sans-serif;
	line-height: 1.5em;
	color: #dddddd;
}

h1{
	font-size: 2.0em;
	color: #dddddd;
	padding: 0px;
}

p{
	margin-bottom: 0.5em;
}


header {
	max-width: 1000px;
	margin: auto;
}

.main {
	max-width: 1000px;
	margin: auto;
}

.row {
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: -5px;
}

.row,
.row > .column {
	padding: 5px;
}

.portcolumn {
	margin-bottom: -7px;
}

.column {
	float: left;
	width: 50%;
}

.portcolumn {
	float: left;
	width: 25%;
}

.nav {
	flex: center;
	height: 150px;
	width: 100%;
	vertical-align: bottom;
}

.nav > ul {
	list-style: none;
	text-align: right;
	padding-top: 80px;

}

.nav > ul > li a {
	padding:4px;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	color: #c4b0ab;
	font-size: 1.1em;
}

.nav > ul > li a:hover {
	color: #d92a39;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

.content {
	padding: 2px;
}

.content a {
	padding:4px;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	color: #c4b0ab;
}

.content a:hover {
	color: #d92a39;
}

.thumb {
	width: 100%;
	height: 339px;
	object-fit: cover;
}

.lightbox {
	display: none;

	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 2%;
	background: rgba(0, 0, 0, 0.5);
}

.lightbox:target {
	display: block;	
}

.lightbox span {
	display: block;
	width: 100%;
	height: 100%;

	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* fix narrow/portrait screen stuff  */
@media screen and (max-width: 900px) {
	.column {
		width: 100%;
	}
}

@media screen and (max-width: 960px) {
	.portcolumn {
		width: 33%;
	}
}
@media screen and (max-width: 620px) {
	.portcolumn {
		width: 50%;
	}
}
@media screen and (max-width: 400px) {
	.portcolumn {
		width: 100%;
}
