@font-face {
	font-family: 'Host';
	src: url('/fonts/Host_G.-V.woff2') format('woff2');
	font-display: swap;
}
:root {
	--b: white;
	--t: black;
	--px10: 10px;
	--px15: 15px;
	--px20: 20px;
	--px40: 40px;
	--tr-l: 0.5s;
	--fs-s: clamp(0.4rem, 1vw, 0.5rem);
	--fs-m: clamp(0.6rem, 1.5vw, 0.7rem);
	--fs-l: clamp(0.8rem, 2.25vw, 0.9rem);
}
* {
	margin: 0;
	color: var(--t);
	font-weight: 300;
	box-sizing: border-box;
	overflow-x: clip;
}
body {
	background: var(--b);
	-webkit-touch-callout: none;
}
a,
p,
u,
h1,
h2,
h3 {
	font:
		var(--fs-s) / var(--fs-s) Host,
		Arial,
		sans-serif;
	overflow-wrap: break-word;
}
a {
	width: fit-content;
	text-decoration: none;
}
h2 {
	position: relative;
	line-height: 0;
	left: var(--px10);
	bottom: 10%;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
header {
	position: sticky;
	top: var(--px10);
	z-index: 2;
	width: 100%;
	mix-blend-mode: difference;
	background: var(--b);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	pointer-events: none;
}
nav {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-areas: 'home home home home home home . about';
	gap: var(--px10);
	@media (max-width: 1024px) {
		grid-template-columns: repeat(6, 1fr);
		grid-template-areas: 'home home home home . about';
	}
}
.home {
	grid-area: home;
}
.about {
	grid-area: about;
}
nav a {
	font-size: var(--fs-l);
	color: var(--b);
	padding: 0 var(--px10);
	line-height: var(--fs-l);
	pointer-events: auto;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
span {
	-webkit-text-fill-color: white;
	color: white;
	opacity: 0.4;
	mix-blend-mode: difference;
}
section {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	padding-top: var(--px20);
	gap: var(--px10);
	@media (max-width: 1024px) {
		grid-template-columns: repeat(6, 1fr);
	}
	@media (max-width: 768px) {
		grid-template-columns: repeat(3, 1fr);
	}
	@media (max-width: 360px) {
		grid-template-columns: repeat(2, 1fr);
	}
}
div {
	line-height: 0;
}
img {
	position: relative;
	object-fit: cover;
	aspect-ratio: 1/1;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	will-change: transform, opacity;
	transform: translateZ(0);
	backface-visibility: hidden;
	opacity: 0;
	transition: opacity var(--tr-l) cubic-bezier(0.34, 1, 0.68, 1);
	cursor: pointer;
}
@media (min-width: 1024px) {
	img:hover {
		z-index: 1;
		opacity: 1;
		transition: none;
	}
}
@media (max-width: 1024px) {
	img {
		transition: opacity var(--tr-l) cubic-bezier(0.34, 1, 0.68, 1);
	}
}
::-webkit-scrollbar {
	display: none;
}
.image-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	pointer-events: none;
}
.enlarged-wrapper {
	position: relative;
	pointer-events: auto;
	display: inline-block;
}
.nav-zone {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	mix-blend-mode: difference;
}
.nav-zone.prev {
	left: 0;
	cursor: w-resize;
	justify-content: flex-start;
	padding-left: var(--px15);
}
.nav-zone.next {
	right: 0;
	cursor: e-resize;
	justify-content: flex-end;
	padding-right: var(--px15);
}
.nav-zone svg {
	width: var(--px15);
	pointer-events: none;
	mix-blend-mode: difference;
}
.enlarged-wrapper > img {
	min-height: 90svh;
	max-height: 90svh;
	aspect-ratio: auto;
	opacity: 1;
	display: block;
	position: relative;
	z-index: 1;
	@media (max-width: 1024px) {
		min-height: 0;
		min-width: 90vw;
		max-width: 90vw;
		object-fit: contain;
	}
}
.thumbnails {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	z-index: 4;
	pointer-events: none;
}
.thumbnail {
	aspect-ratio: 1/1;
	width: clamp(4rem, 4vw, 6rem);
	opacity: 0.4;
	@media (max-width: 1024px) {
		width: clamp(2rem, 8vw, 6rem);
	}
}
.thumbnail.current {
	opacity: 1;
}
::selection {
	background: var(--t);
	color: var(--b);
}
