@import 'normalize.css';
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap');

html,
body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Atkinson Hyperlegible Next', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #1b1925d3;
	background-color: #f6f4ee;
	scroll-behavior: smooth;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 500;
	color: #0d591d;
}

p {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.5;
}

a {
	color: #c45806;
	font-weight: 500;
	text-decoration: none;
}

li {
	font-size: 1rem;
	line-height: 1.4;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Layout */

body {
	padding: 48px 16px 96px 16px;
}

main {
	max-width: 560px;
}

h2 {
	margin-top: 48px;
	margin-bottom: 16px;
}

p,
ul {
	margin-bottom: 24px;
}

.highlight {
	background-color: #f2e8cf;
	padding: 0 2px;
}

section:last-of-type {
	margin-top: 48px;
}

/* Details */

ul {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.15), 0 1px 8px 0 rgba(0, 0, 0, 0.1);
	background-color: #fcfbfa;
}

li {
	padding: 12px 16px;
	box-shadow: inset 0 -0.5px 0 0 rgba(0, 0, 0, 0.15);
}

li:last-child {
	box-shadow: none;
}

/* Breakpoints */

@media (min-width: 560px) {
	h1 {
		font-size: 2.5rem;
		margin-top: 32px;
	}

	h2 {
		margin-top: 72px;
		margin-bottom: 24px;
		font-size: 1.75rem;
	}

	p {
		font-size: 1.25rem;
		line-height: 1.5;
	}

	p,
	ul {
		margin-bottom: 32px;
	}

	section:last-of-type {
		margin-top: 72px;
	}
}
