body {
	margin: 0;
	background-color: aliceblue;
}

a {
	text-decoration: none;
	color: blue;
}

.container {
	display: grid;
	grid-template-columns: auto;
	justify-content: space-around;
}

.container span {
	text-decoration: none;
	display: inline;
}

/* form {
              display: inline;
              margin: 1%;
            } */

.search {
	width: 20%;
	height: auto;
	border-radius: 5px;
	border-color: beige;
}

.button {
	cursor: pointer;
	border: none;
	height: auto;
	background-color: transparent;
}

/* #product_container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 20px;
}

.product {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	flex-direction: column;
} */

.page_wrapper {
	padding-left: 5vw;
	padding-right: 5vw;
}

#products_container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;

	max-width: 1400px; /* prevents ultra-wide stretching */
	margin: 0 auto; /* centers the grid */
}

.product {
	background: #fff;
	border: 1px solid #ddd;
	padding: 12px;
	box-sizing: border-box;
}

.product_image {
	width: 100%;
	height: auto;
	max-height: 75%;
	display: block;
	object-fit: contain;
}
.product_name {
	font-size: 1.1em;
	margin-top: 10px;
	color: #333;
}
.product_price {
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 5px;
	color: #27ae60;
}
