.container {
	margin: 0 auto;
	font-family: "Roboto", serif;
	font-size: 1.25rem;
	font-weight: 400;
}

header {
	background-color: #65a064;
	width: 100%;
	text-align: center;
	padding: 3rem 2rem;
	background-image: url(../img/cauliflower.webp);
	background-repeat: no-repeat;
	background-size: 100%;
}

.container-about-me h1 {
	background-color: rgba(255, 255, 255, 0.4);
	color: black;
	font-size: 2.5rem;
}

h1 {
	font-family: "Inter", serif;
	background-color: black;
	color: white;
	padding: 1rem;
	border-radius: 8px;
	font-size: 2.25rem;
	margin-bottom: 1.25rem;
}

header p {
	font-size: 1.25rem;
	background-color: rgba(255, 255, 255, 0.4);
	padding: 1rem;
	margin-bottom: 2rem;
}

a {
	text-decoration: none;
	background-color: black;
	color: white;
	padding: 1rem;
	border-radius: 8px;
}

main {
	padding: 3rem 2rem;
	text-align: center;
}

img {
	width: 100%;
}

.prerequisite h2,
.prerequisite p,
.prerequisite div {
	margin-bottom: 1rem;
}

.prerequisite div h3 {
	margin-bottom: .75rem;
}

.prerequisite div>div {
	padding: 1rem;
}

.cards section,
.prerequisite div>div {
	margin-bottom: 3rem;
	border: 1px solid black;
	border-radius: 6px;
}

.cards section div {
	padding: 2rem;
}

.cards section div h2 {
	margin-bottom: 1rem;
	font-family: "Inter", serif;
}

li {
	list-style: none;
	font-style: italic;
}

ul {
	margin: .75rem 0;
	padding: 0;
}

span {
	font-weight: 700;
}

.conclusion h2,
.extra-article h2 {
	background-color: #65a064;
	padding: 1rem;
	border-radius: 4px;
	margin-bottom: 2rem;
}

.extra-article a {
	display: inline-block;
}

.extra-article p{
	margin-bottom: 1rem;
}

.conclusion,
.extra-article {
	/* background-color: #f8f8f8; */
	padding: 3rem 2rem;
}

footer,
.privacy-policy {
	background-color: black;
	color: white;
	text-align: center;
	font-size: 1rem;
	padding: .5rem;
	width: 100%;
}

.content-about-me h2 {
	background-color: black;
	color: white;
	padding: 1rem;
}

.content-about-me>div {
	padding: 1rem;
}

.about-me-body {
	background-color: #65a064;
}

.content-about-me p {
	margin-bottom: 1rem;
}

footer a {
	display: inline-block;
}

.follow-me h2 {
	font-size: 2rem;
}

.cookie-container {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: #222;
	color: #fff;
	padding: 15px;
	text-align: center;
	border-radius: 5px;
	display: none;
	/* Initially hidden */
}

.cookie-container button {
	background: #ff9800;
	border: none;
	padding: 8px 15px;
	cursor: pointer;
	color: #fff;
	margin-left: 10px;
}

.advertisment-banner-img {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.advertisment-banner,
.cauliflower-banner a {
	text-decoration: none;
	background-color: unset;
}

.cauliflower-banner img {
	width: 100%;
	margin: 0 auto;
}

.new-and-exciting div{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.picnic-spot{
	margin-top: 2rem;
}

.picnic-spot a{
	display: inline-block;
}

.new-and-exciting img{
	width: calc((100% - 1rem) / 2);
}

.new-and-exciting h2{
	margin-bottom: 2rem;
}

@media (min-width:860px) {
	.container {
		max-width: 1240px;
	}

	.prerequisite>div {
		display: flex;
		gap: 1rem;
	}

	.prerequisite div>div p {
		padding: 1rem;
	}

	.prerequisite div>div {
		width: calc((100% - 2rem) / 3);
		padding: 0;
	}

	.prerequisite h3 {
		background-color: black;
		color: white;
		padding: 1rem;
	}

	.cards {
		display: flex;
		flex-wrap: wrap;
		gap: 2rem;
	}

	.cards>section {
		width: calc((100% - 2rem) / 2);
	}
}