h1, h2, p , li, a{
	font-family: Arial, sans-serif;
	color: #767570;
}

body {
	font-family: Arial, sans-serif;
	background-color: #faf7f2;
	padding: 20px;
}

.inventory-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.item-card { 
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px; 
	width: 300px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.item-card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.item-details {
	padding: 15px;
}

.item-title {
	margin: 0 0 10px;
	font-size: 1.25em;
	color: #333;
}

.item-description {
	color: #666;
	font-size: 0.9em;
	line-height: 1.4;
}