/* CSS for small screens */
@media (width >= 0) {
	/* Grid wrapping the entire page */
	body {
		grid-template-columns: 1fr;
		grid-gap: 0;
		margin: auto;
	}

	body,
	body > header,
	body > article {
		max-width: 90vw;
	}

	#screenshots {
		grid-template-columns: 1fr;
	}

	/* End of Media width condition */
}
