
body{
	margin-top: -6.25rem;
}

.herb-center-image {
	margin-top: 30px;
}

.herb-center-image-display {
  display: block;
  margin: 30px auto; /* change margin-top to margin and add auto */
}



.herb-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.herb-title {
	font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 2.5rem;
	text-align: center;
	line-height: 1.5rem;
	margin-top: 1.9rem;
	margin-bottom: 1.4rem;
	color: var(--primary-color);

}

.herb-dropcap {
	float: left;
	font-size: 2.6em;
	line-height: .9;
	font-weight: bold;
	margin-right: 8px;
	margin-bottom: -10px;
	/* padding: -10px; */
	color: red;
	font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	text-shadow: gray 0.05em 0.05em;
}

.herb-text {
	font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.2rem;
	line-height: 1.5rem;
	/* margin-bottom: 1rem; */
	color: black;
}

.herb-text-small-heading {
	font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.4rem;
	line-height: 1.4rem;
	margin-top: 10px;
	/* margin-bottom: 1rem; */
	color: GREEN;
}

.herb-text-larger-heading {
	font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.4rem;
	line-height: 1.4rem;
	/* margin-bottom: 1rem; */
	color: black;
}

.herb-text-medium-heading {
	font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.8rem;
	line-height: 1.4rem;
	text-align: center;
	margin-bottom: -1.6rem;
	color: GREEN;
}


.indented {
	text-indent: 20px;
}

.container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	padding: 20px;
}

.herb-card {
	background-color: #f7f7f7;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.herb-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.herb-card h2 {
	font-weight: bold;
	margin-top: 10px;
}

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

.herb-card li {
	margin-bottom: 10px;
}

.herb-card i {
	font-style: italic;
}

.container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(6, auto);
	grid-gap: 20px;
	padding: 20px;
}

.herb-card {
	background-color: #f7f7f7;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.herb-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.herb-card h2 {
	font-weight: bold;
	margin-top: 10px;
}

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

.herb-card li {
	margin-bottom: 10px;
}

.herb-card i {
	font-style: italic;
}

/* Define grid areas for each herb card */
.herb-card:nth-child(1) {
	grid-area: basil;
}

.herb-card:nth-child(2) {
	grid-area: chive;
}

.herb-card:nth-child(3) {
	grid-area: coriander;
}

.herb-card:nth-child(4) {
	grid-area: dill;
}

.herb-card:nth-child(5) {
	grid-area: marjoram;
}

.herb-card:nth-child(6) {
	grid-area: mint;
}

.herb-card:nth-child(7) {
	grid-area: oregano;
}

.herb-card:nth-child(8) {
	grid-area: parsley;
}

.herb-card:nth-child(9) {
	grid-area: rosemary;
}

.herb-card:nth-child(10) {
	grid-area: sage;
}

.herb-card:nth-child(11) {
	grid-area: tarragon;
}

.herb-card:nth-child(12) {
	grid-area: thyme;
}

/* Define grid template areas */
.container {
	grid-template-areas:
		"basil chive"
		"coriander dill"
		"marjoram mint"
		"oregano parsley"
		"rosemary sage"
		"tarragon thyme";
}



/* Herb card styles */
/* ================================================================ */
.herb-card {
	clear: both;
	margin-bottom: 3rem;
	overflow: hidden;
}

.herb-card .img-left {
	float: left;
	margin-right: 2rem;
	margin-bottom: 1rem;
	max-width: 240px;
}

@media (max-width: 768px) {
	.herb-card .img-left {
		max-width: 160px;
	}
}

.herb-card ul {
	font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4rem;
	list-style-position: inside;
	padding-left: 0;
}

.herb-card li {
	margin-bottom: 1.5rem;
}



@media (max-width: 768px) {
	.herb-title {
		font-family: 'Noto Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
		font-size: 2rem;
		text-align: center;
		line-height: 1.5rem;
		margin-top: 1.9rem;
		margin-bottom: 1.4rem;
		color: var(--primary-color);

	}
}