html {
	font: 1.2em/1.6 system-ui, sans-serif;
	scroll-behavior: smooth;
}

body {
	margin: 1rem auto;
	max-width: 1200px;
	overflow-wrap: break-word;
	padding: 0 12px;
	text-size-adjust: 100%;
}

.grid {
	display: grid;
	grid-gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid a {
	background-color: hsl(208deg 79% 28%);
	color: hsl(0deg 0% 100% / 90%);
	display: grid;
	padding: 2rem 1rem;
	place-items: center;
	text-align: center;
	text-decoration: none;
	transition: all 0.1s ease-in-out;
}

.grid a:hover {
	background-color: hsl(208deg 79% 18%);
}

@media (min-width: 750px) {
	body {
		margin: 3rem auto;
		padding: 0 3rem;
	}
}
