.gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.art {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;

	width: 300px;
	height: 300px;
}

.art:hover {
	color: #7A0008;
}

.art img {
	vertical-align: middle;
}

.art:hover img {
	box-shadow: 0px 0px 50px white ;
}

.painting-box {
	margin: 0 auto;
	width: fit-content;
	height: calc(100vh - 160px);
}

.painting {
	max-width: min(960px, 100%);
	max-height: calc(100% - 150px);
}

.painting-title{
	color: #444444;
}

.art-box-header {
	height: 30px;
}

.art-box-content {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}

.art-box-footer {
	height: 30px;
	padding-top: 5px;
	font-size: 18px;
	font-family: "Georgia", serif;
	text-align: center;
}

.art-indicator {
	display: none;
}

.art:hover .art-indicator {
	display: block;
}

.painting-sold{
	color: var(--sold-color);
}

.painting-available{
	color: var(--available-color);
}

.art-box-title {
	font-family: "Georgia", serif;
	font-size: 10pt;
}