body {
	width: calc(100vw - 10px);
	margin: 0 auto;
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: black;
	color: white;
	user-select: none;
	font-family: ivypresto-display, serif;
	font-weight: 300;
	font-style: normal;
}

.header-container {
	font-family: ivypresto-display, serif;
	font-weight: 300;
	font-style: normal;
	font-size: 5vw;
	line-height: 4vw;
	display: flex;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: flex-end;
	margin-top: 1vw;
	transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.about-container {
	font-family: ivypresto-display, serif;
	font-weight: 300;
	font-style: normal;
	font-size: 5vw;
	line-height: 4vw;
	height: 0;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
	transition: height 300ms ease;
}

.about-container.open {
	height: 100vh;
	pointer-events: auto;
	user-select: text;
}

.indent {
	padding-left: 8vw;
	padding-top: 5vw;
}

.header-item {
	display: inline;
	z-index: 1;
}

.header-container .header-item:first-child {
	grid-column: 1;
	justify-self: left;
}

.header-container .header-item:last-child {
	grid-column: 3;
	justify-self: right;
}

.image-scroll {
	height: 100vh;
	overflow-y: scroll;
}

.image-column-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 5px;
}

.image-column {
	display: block;
	line-height: 0;
}

img {
	display: block;
	opacity: 0;
	width: 100%;
	height: auto;
	margin-bottom: 5px;
	transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

img.loaded {
	opacity: 100%;
}

img.hover {
	cursor: pointer;
}

img.hover.inactive {
	opacity: 75%;
}

.header-container span {
	opacity: 0;
	transition: opacity 200ms ease;
}

.header-container span.loaded {
	opacity: 1;
}

/* Fullscreen styles */
.fade-out {
	opacity: 0 !important;
	pointer-events: none;
}

body.fullscreen-active {
	overflow: hidden;
}



/* Info divs */
.info-div {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
	font-family: "Ivar Fine", sans-serif;
	font-size: 5vw;
	z-index: 1001;
	opacity: 0;
	transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	user-select: none;
	pointer-events: auto;
}

.info-div.visible {
	opacity: 1;
}

.info-left,
.info-right {
	left: 0;
	right: auto;
}

.fullscreen-clone {
	position: fixed;
	z-index: 1000;
	opacity: 1;
	margin: 0;
	object-fit: cover;
	cursor: pointer;
	transition: none;
}

.fullscreen-clone.animating {
	transition:
		top 600ms cubic-bezier(0.4, 0, 0.2, 1),
		left 600ms cubic-bezier(0.4, 0, 0.2, 1),
		width 600ms cubic-bezier(0.4, 0, 0.2, 1),
		height 600ms cubic-bezier(0.4, 0, 0.2, 1);
}


.button {
	transition: color 200ms ease;
	cursor: pointer;
}

.button:hover {
	color: rgb(50, 50, 50);
}




@media (max-width: 1200px) {
	.image-column-container {
		grid-template-columns: 1fr 1fr;
	}

	.about-container {
		font-size: 8vw;
		line-height: 9vw;
	}

	.header-container {
		font-size: 5vw;
	}

	.indent {
		padding-left: 0;
		padding-top: 5vw;
	}
}