#artShowcase
{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.showcaseCard
{
	width: calc(100% / 3);
	height: auto;

	padding: 0;
	margin: 10px;
}

.showcaseImage
{
	object-fit: cover;
	aspect-ratio: 1 / 1;

	width: 100%;
	height: 100%;

	padding: 0;
	margin: 0;

	transition: all 32.5ms ease-in-out;
}

.showcaseImage:hover
{
	transform: scale(105%) rotate(1.40625deg);
}