body {
	margin: 0;
	padding: 0;
	font-family: 'Arial', 'Tahoma', sans-serif;
	font-size: 48px;
	background: black;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}

.header {
	top: 0px;
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-left: 1rem;
	padding-right: 1rem;
	color: white;
	font-size: 1.75rem;
	display: block;
	position: sticky;
	z-index: 1;
	background-color: #000000b0;
	backdrop-filter: blur(4px);
}

.header .current {
	color: #fff;
	text-decoration: none;
}

.header .separator {
	color: #da4;
}

.header .other {
	color: #999;
	text-decoration: none;
}

.header a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer {
	padding-top: 10rem;
	padding-bottom: 2rem;
	padding-left: 1rem;
	padding-right: 1rem;
	color: #888;
	font-size: 1.5rem;
	display: block;
	background-color: #000000;
	text-align: center;
}

.cards-container {
	margin: 0rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
	flex-wrap: wrap;
	gap: 0px;
	flex-grow: 1;
}

.cards-container .card {
	display: block;
	position: relative;
	padding: 0rem;
	aspect-ratio: 4 / 4;
	text-decoration: none;
	color: white;
	overflow: clip;
	line-height: 130%;
}

.cards-container .card .image {
	display: block;
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	background: black;
}

.cards-container .card .content {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 2rem 2rem;
	margin: 0rem;
	background: #000000a0;
	font-size: 100%;
	line-height: inherit;
}

.cards-container .card .content .title {
	margin: 0;
	padding: 0;
	font-size: 200%;
	line-height: 120%;
	color: #ddd;
}

p {
	font-size: inherit;
	line-height: inherit;
}

.cards-container .card .content > * {
	filter: drop-shadow(0px 0px 10px black);
}

.cards-container .card .content .tagline,
.cards-container .card .content .description {
	font-size: 100%;
	line-height: inherit;
	color: #aaa;
	padding-top: 2rem;
}

.cards-container .card .content .tagline {
	font-style: italic;
}

.cards-container .card .content a {
	font-size: 100%;
	color: inherit;
}

a {
	color: inherit;
}

a:hover,
.cards-container .card .content a:hover {
	color: #fff;
}

.cards-container .card .content a:not(.noemphasis):not(:hover) {
	color: #ddd;
}

/* these rules control size and number of columns the boxes get laid out in, depending on screen width */
@media (width <= 1000px) {
	.cards-container .card { width: 99%; font-size: 3.5vw;  }
}

@media (1000px < width <= 1500px) {
	.cards-container .card { width: 49%; font-size: 1.5vw; }
}

@media (1500px < width <= 2000px) {
	.cards-container .card { width: 33%; font-size: 1vw; }
}

@media (2000px < width) {
	.cards-container .card { width: 25%; font-size: 0.75vw; }
}

/* end of size and column rules */

@media (hover: hover) {
	.cards-container .card:not(:hover) .content {
		opacity: 0;
		transition: 0.2s;
	}

	.cards-container .card:not(:hover) img {
		filter: none;
		transition: 0.2s;
	}

	.cards-container .card:hover img {
		filter: blur(3px);
		transition: 0.5s;
	} 
}

@media (hover: none) {
	@keyframes fade-in {
		from {opacity: 0;}
		to {opacity: 1;}
	}

	@keyframes blur-in {
		from { filter: none;}
		to { filter: blur(3px); }
	}
	.cards-container .card .content,
	.cards-container .card img {
		animation-delay: 3s;
		animation-duration: 1s;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
	}
	
	.cards-container .card .content > * {
		animation-delay: 4s;
		animation-duration: 1s;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
		animation-name: fade-in;
		opacity: 0;	
	}

	.cards-container .card .content {
		opacity: 0;
		animation-name: fade-in;
	}
	.cards-container .card img {
		filter: none;
		animation-name: blur-in;
	}
}
.cards-container .card img {
	scale: 110%;
}

@media (hover: hover) {
	.cards-container .card .content {
		opacity: 1;
		transition: 0.5s;
	}	
}

.article {
	color: #aaa;
	margin-left: 0.8em;
	margin-right: 0.8em;
	font-size: 1.7rem;
	line-height: 2.5rem;
}

@media (1000px < width) {
	.article  {
		margin-left: 20%;
		margin-right: 20%;
		position: relative;
		font-size: 1.3rem;
		line-height: 1.9rem;
	}
}

.article h1 {
	font-size: 250%;
	font-weight: bold;
	color: #666;
	margin-top: 8rem;
	margin-bottom: 4rem;
}

.article h2 {
	font-size: 150%;
	color: #666;
	margin-top: 6rem;
}

.article p {
	margin-bottom: 1.5rem;
}

a:hover {
	color: #fff;
}

.article a:not(.noemphasis):not(:hover),
.article a:visited:not(.noemphasis):not(:hover),
.article a:link:not(.noemphasis):not(:hover) {
	color: #ddd;
}

.article blockquote {
	display: block;
	font-style: oblique;
	margin-top: 4rem;
	margin-bottom: 4rem;
	margin-left: 4rem;
	margin-right: 4rem;
	text-align: left;
	color: #666; 
	font-size: 120%;
	line-height: 120%;
}

.article figure {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.article img {
	display: block;
	max-width: 75vw;
	max-height: 75vh;
	margin-left: auto;
	margin-right: auto;
}

.article figcaption {
	font-style: oblique;
	font-size: 80%;
	margin-top: 1rem;
	color: #888;
}



