body {
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	margin: 0;
	padding: 0;
}

#content {
	display: flex;
	justify-content: center;
	align-items: center;
}

h1 {
	font-size: 2em;
	margin: 0.6em;
	margin-bottom: 0;
	font-variant: small-caps;
}

h2 {
	font-size: 1.3em;
}

.parent-container {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.image-container {
	flex: 1;
	max-width: 69%;
	aspect-ratio: 3508 / 2364;
	position: relative;
	overflow: hidden;
}

.image-container-standing {
	flex: 1;
	max-width: 35%;
	aspect-ratio: 1485 / 2049;
	position: relative;
	overflow: hidden;
}

#description {
	flex: 1;
	max-width: 31%;
	padding: 0.5em;
	padding-right: 2em;
	display: flex;
	flex-direction: column;
	gap: 1em;
	text-align: justify;
	text-justify: inter-word;
}

#description-standing {
	flex: 1;
	max-width: 65%;
	padding: 0.5em;
	padding-right: 2em;
	display: flex;
	flex-direction: column;
	gap: 1em;
	text-align: justify;
	text-justify: inter-word;
}

@media (max-width: 1280px) {
	.parent-container {
		flex-direction: column;
	}

	.image-container,
	.image-container-standing,
	#description,
	#description-standing {
		max-width: 100%;
	}

	#description,
	#description-standing {
		padding-left: 2em;
		gap: 0;
	}
}

@media (max-width: 1024px) {
	.button-container {
		grid-template-columns: repeat(3, 1fr) !important;
	}

	.centered-container {
		margin: 1em !important;
	}
}

.image-container img,
.image-container-standing img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.centered-container {
	text-align: center;
	margin: 5em;
}

.button-container {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 0.3em;
	width: 100%;
	margin: 0 auto;
}

#navigation {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	grid-gap: 0.3em;
	width: 100%;
	margin: 0 auto;
}

button {
	width: 100%;
	padding: 0.1em;
	position: relative;
	font-size: 1.2em;
	border: 1px solid black;
	background-color: white;
	color: black;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Cormorant Garamond", serif;
	font-size: 1em;
}

button:hover {
	background-color: black;
	color: white;
}

button:focus {
	outline: none;
}

img {
	user-select: none;
}

.full-width-item {
	grid-column: 1 / -1; /* Spans all columns */
}
