#gridBox {
	display: grid;
	grid-template-columns: 1fr;
	grid-row-gap: 2em;

	width: 80%;
	margin: auto;
	margin-top: 3rem;
}

.gridSection {
	display: grid;
	grid-template-rows: 1fr auto;
	grid-template-columns: 1fr 1fr 1fr;
}

.sectionHeader {
	background-color: #3b3227;
	border-radius: 15px;
	border-bottom: 2px solid #998670;
	padding: 0.5em;
	font-size: 2em;
	grid-column-start: 1;
	grid-column-end: -1;
}

.columnHeader {
	text-align: center;
	background-color: #998670;
	width: 90%;
	margin: auto;
	margin-top: 0.5em;
	padding: 0.25em;
}

.bulletless {
	list-style: none;
}

.bulletless li {
	margin: 0.5em;
}


@media (max-width: 800px) {
	.gridSection {
		grid-template-columns: 1fr;
		grid template-rows: auto;
	}
}