#showcaseContainer {
	display: flex;
	height: 100vh;
	width: 100%;
	padding: 0 50px 0 50px;
}

.showcaseSlice {
	height: 100vh;
	border-right: dashed var(--highlight) 1px;
	flex: 1 0 0;
	transition: flex 0.5s;
}

.showcaseLink {
	display: block;
	position: relative;
	width: 100%;
	height: calc(100vh - (50px * 3));
	margin: 100px 0 50px 0;
}

.showcaseImage {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: filter 0.5s;
}

.showcaseTitleContainer,
.showcaseTypeContainer {
	position: absolute;
	left: 50%;
	top: 45%;
	width: 100%;
	padding: 0 5px 0 5px;
	transform: translateX(-50%);
	font-weight: 800;
	font-size: var(--bigText);
	text-align: center;
	color: var(--background);
	overflow: hidden;
}

.showcaseTypeContainer {
	top: calc(45% + 75px);
	font-size: var(--smallText);
	font-weight: 400;
}

.showcaseTitle,
.showcaseType {
	position: relative;
	text-wrap: nowrap;
	bottom: -200px; /* start outside of container for animation */
	transition: bottom 0.5s;
}

.showcaseTitle:hover,
.showcaseType:hover {
	color: var(--background);
}

#showcaseLineTop,
#showcaseLineOverlay,
#showcaseLineBottom {
	position: fixed;
	height: 0;
	width: 100%;
	border-bottom: dashed var(--highlight) 1px;
}

#showcaseLineTop {
	top: 100px;
}

#showcaseLineOverlay {
	bottom: 100px;
	z-index: 1;
}

#showcaseLineBottom {
	bottom: 50px;
}