:root
{
	--portrtait-length: 10rem;
}

#artist-selection
{
	flex-grow: 1;
	flex-flow: row wrap;

	overflow-y: scroll;
	padding: 2.4rem 1.5rem 2rem 1.5rem;

	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
}

#description p
{
	overflow-y: scroll;
}

.scroll-container
{
	overflow-y: scroll;
}

.artist-tile
{
	margin: 0rem 1.6rem 1rem 1.6rem;
	flex-basis: var(--portrtait-length);
	flex-grow: 0;
	display: flex;
	flex-direction: column;
	filter: grayscale(100%);
}

.artist-tile:last-of-type:after
{
	content: '';
	width: 100%;
	height: 2rem;
}

.portrait
{
	box-sizing: content-box;
	border: solid 1px lightgrey;
	border-radius: 3px;
	/*height: var(--portrtait-length);*/
	width: 100%;
	padding-bottom: 100%;
	background-size: cover;
}


.title
{
	height: calc(2 * var(--line-height));
	font-weight: 400;
	margin-top: 0.5rem;
	display: flex;
}

.artistId
{
	margin-right: 1ex;
}

.artist-tile:hover
{
	filter: grayscale(0%);
}

@media (max-width: 600px)
{
	#artist-selection
	{
		justify-content: center;
	}

	.artist-tile
	{
		flex-grow: 1;
	}
}
