/* General Styling */

body {
	max-width: 100vw;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
main {
	flex: 1;
}

article {
	gap: 1rem;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
section {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}
section img {
	width: 50%;
}
section p {
	margin: 1rem auto 2rem;
	width: 85%;
}

footer {
	font-size: smaller;
}