html {
	font-family: 'Poppins', sans-serif;
	margin: 3rem;
	background-color: rgb(245, 245, 245);
}

body {
	min-height: 100vh;
	line-height: 1.5rem;
}

header h1 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2rem;
}

header h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: italic;
	padding-top: 0.5rem;
	font-size: 1.5rem;
}

li {
	display: inline;
}

nav {
	float: right;
	position: relative;
	left: -50%;
	text-align: left;
	padding-top: 2rem;
	padding-bottom: 2rem;
	word-spacing: 20px;
	font-size: 1.5rem;
}

nav > ul {
	position: relative;
	left: 50%;
}

.items h2, .before h2, .guide h2 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	margin-top: 2rem;
}

.before {
	background-color: rgb(235, 239, 245);
}

.items {
	margin-top: 6rem;
	text-align: center;
	
}

.rice h3, .prep h3, .veg h3, .pork h3, .finish h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	margin-top: 1rem;
}

img {
	margin-top: 2rem;
	max-width: 75%;
	height: auto;
}

.instructions {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 0 20px;
	margin-bottom: 2rem;
}

.items h2 {
	margin-bottom: 1rem;
	text-decoration-line: underline;
}

.items ul {
	display: grid;
	grid-template-columns: repeat(7, );
	margin: 0 8rem 0 8rem;
	justify-items: center;
}

#base {
	font-size: 1.25rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}



/**** RESPONSIVE DESIGN ***/


@media only screen and (max-width: 800px) {
	html {
		font-family: 'Poppins', sans-serif;
		margin: 2rem;
    }

    body {
		min-height: 100vh;
		line-height: 1.5rem;
	}

	main, .items {
		text-align: center;
	}

	.instructions {
		display: block;
	}

	.items ul {
		display: block;
	}





