body {
	display: flex;
	flex-direction: column;
	margin: 0;
	min-height: 100vh;
	background-color: #FFD;
	font-family: Calibri, sans-serif;
}

header {
	flex-direction: column;
}

header h1 {
	margin-bottom: 0;
}

header p {
	color: grey;
}

header, footer {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FFA;
}

main {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2em;
}

main article {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 7em;
	max-width: 100%;
	aspect-ratio: 1;
	padding: 1em;
	border-radius: 1em;
	background-color: #DFD;
	box-shadow: 0 0 .3em #CCC;
}

main h2 {
	margin-top: 0;
	font-size: 1.1em;
	text-transform: uppercase;
}

main a {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	aspect-ratio: 1;
}

main img {
	flex-grow: 1;
	display: block;
	height: 0;
	transition: transform .3s;
}

main img:hover {
	transform: scale(1.1);
}