/* CSS for large screens */
@media (width >= 45rem) {
	/* Grid wrapping the entire page */
	body {
		width: 60rem;
		grid-gap: 0.5rem 3rem;
	}

	#screenshots {
		grid-template-columns: repeat(3, 1fr);
	}
	/* End of Media width condition */
}
