body {
	display: flex;
	justify-content: center;
	/* don't vertically center the whole page so headers sit at the top */
	align-items: flex-start;
	min-height: 100vh;
	margin: 0;
	background-color: MistyRose;
	font-family: "papyrus", fantasy;
}
.center-img {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Page container for event pages: keep header on top, content below */
.page {
	width: min(900px, 95vw);
	padding: 2rem;
	box-sizing: border-box;
	background: rgba(255,255,255,0.6);
	border-radius: 12px;
	margin-top: 2rem;
}
img {
	max-width: 90vw;
	max-height: 60vh;
	box-shadow: 0 4px 24px rgba(0,0,0,0.12);
	border-radius: 16px;
}
h1 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #222;
}

.pastry-link {
	margin-top: 1.5rem;
	color: #0074d9;
	text-decoration: none;
	font-size: 1.2rem;
}

.pastry-link:hover {
	text-decoration: underline;
}

.back-link {
	margin-top: 1.5rem;
	color: #0074d9;
	text-decoration: none;
	font-size: 1.2rem;
}

.back-link:hover {
	text-decoration: underline;
}
