.amazonproducts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 20px;
}

.productsingle {
	align-items: center;
	justify-content:center;
	border: solid 1px #dddddd;
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	width: 45%;
}

.productcontent {
	padding: 5px;
	text-align: center;
}

@media (min-width: 56.25em) {
	.productsingle {
		width: 45%;
	}
}

@media (min-width: 70em) {
	.productsingle {
		width: 30%;
	}
}

