/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* -------------------------------------------------------------
   Image containers for artsales artists
------------------------------------------------------------- */
.image-container{
	position: relative;
	display: inline-block;
	max-width: 100%;
	/* typography*/
	color: white;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ensures text readability */
    text-align: center;
    white-space: nowrap;
}

.image-conatiner img{
	display: block;
	width: 100%;
	height: auto;
}


.top-left {
	position: absolute;
	top: 8px;
	left: 16px;
}

.btm-left {
	position: absolute;
	bottom: 8px;
	left: 16px;
}

.top-right {
	position: absolute;
	top: 8px;
	right: 16px;
}

.btm-right {
	position: absolute;
	bottom: 8px;
	right: 16px;
}

.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* END Image containers ---------------------------------------------------------*/
