section.intro {
	background: #eee;
	padding: 8vh 0 12vh 0;
	text-align: center;
	color: #222;
}

section.intro > * {
	margin-bottom: 0;
}

section.intro > h1 {
	font-size: 4rem;
}

section.intro > h2 {
	padding-top: 1vh;
	font-size: 2rem;
}

section.photos {
	padding-bottom: 20vh;
	background: #eee;
	position: relative;
}

section.photos .wrapper {
	max-width: 80vw;
	margin: auto;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

section.photos .wrapper > a > img {
	border-radius: 0.5rem;
}

section.photos button {
	position: absolute;
	left: 50%;
	bottom: 10vh;
	transform: translate(-50%, 0%);
	background-color: #ff9344;
	color: #111;
	font-size: 2rem;
	border-radius: 10px;
	padding: 0.5rem 1rem;
	margin-top: 2vh;
	transition: color 0.1s ease-out;
}

section.photos button:hover {
	color: #eee;
}

@media (max-width: 1600px) {

	section.photos .wrapper {
		max-width: 90vw;
	}

	section.photos button {
		bottom: 5vh;
	}

}

@media (max-width: 1200px) {

	section.intro > h1 {
		font-size: 3rem;
	}

	section.intro > h2 {
		padding-top: 2vh;
		font-size: 1.5rem;
	}

	section.photos {
		padding-bottom: 30vh;
	}

	section.photos .wrapper {
		max-width: 95vw;
		gap: 0.5rem;
	}

	section.photos button {
		bottom: 15vh;
	}

	section.photos .wrapper a > img {
		max-height: min(40vh, 30vw);
	}

}

@media (max-width: 600px) {

	section.intro > h1 {
		font-size: 3rem;
	}

	section.intro > h2 {
		padding-top: 3vh;
		font-size: 1.25rem;
	}

	section.photos {
		padding-bottom: 30vh;
	}

	section.photos .wrapper {
		max-width: 90vw;
		gap: 1rem;
	}

	section.photos button {
		bottom: 16vh;
	}

	section.photos .wrapper a > img {
		max-height: none;
		width: 100%;
	}

}















