#wrapper {
	width: 1100px;
	margin: auto;
	background-color: yellow;
	border-radius: 32px;
	background-image: linear-gradient(yellow, purple)
}

body {
  background-color: coral;
  font-family: Courier New;
}

#business {
	background-color: yellow;
}

.species {
	color: blue;
	font-size: 30px;
	background-color: orange;
}

footer {
	clear: left;
}

a:hover {
	color: green;
}

ul {
	list-style-type: none;
}

ul li {
	padding: 20px;
	background-color: white;
	margin-bottom: 5px;
	margin-right: 100px;
	text-align: center;
}

#flex-products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	justify-content: space-around;
}

#grid_products {
	display: grid;
	grid-template-columns: 50% 50%;
}




@media (min-width: 700px) {
	#flex-products2 {
		display: flex;
		flex-wrap: wrap;
	}
}

@media (min-width: 1000px) {
	#wrapper {
		width: 1100px;
		margin: auto;
		background-color: yellow;
		border-radius: 32px;
		background-image: linear-gradient(yellow, purple)
	}
}