body {
	background-color: #ffffcc;
}

.mood-board-heading {
	text-align: center;
	font-size: 2.5em;
	color: #333;
	margin-top: 20px;
}

.mood-board {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.mood-board-item {
	border-radius: 10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
	height: 250px;
}

.mood-board-image {
	border-radius: 5px;
	width: 180px;
	height: 150px;
	object-fit: cover;
}

.mood-board-text {
	margin-top: 20px;
	font-size: 1.2em;
}