.comics-container img {
	vertical-align: top;
	width: 100%;
	min-width: 150px;
	max-width: 30vw;
	position: relative;
	z-index: 50;
}

.comics-container {
	width: 100%;
/*	height:  1000px;*/
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

#page-contents h2 {
	font-size: 6vw;
}

.comics-container .comic {
	z-index: 9;
	width: 20%;
	height: fit-content;
	display: flex;
	flex-direction: row;
	position: relative;
	box-shadow: 0 0 15px black;
	background-color: #363030;
/*	transition: width 1s ease;*/
	margin: 3% 6%;
}

.comic div {
	z-index: 10;
}

.comic-desc {
	word-wrap: break-word;
	margin-right: 0%;
	width: 100%;
	display: inline;
	position: absolute;
	overflow: hidden;
	right: 0;
/*	transition-timing-function: ease, ease;
	transition-property: margin-right, width;
	transition-duration: 0.1s, 1s;*/
}

.comic-desc h3 {
	text-decoration: underline;
}

.comic .placeholder:hover {
	width: 290%;
	transition: width 1s ease 0.5s;
	box-shadow: 0 0 15px #bbbbbb;
}

.placeholder {
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 15px black;
	z-index: 12;
	transition: width 1s ease;
	background-color: #363030;
}

.comic .placeholder:hover .comic-desc {
	z-index: 13;
	width: 36%;
	margin-right: 5%;
	transition-timing-function: ease, ease;
	transition-property: margin-right, width;
	transition-duration: 1s, 1s;
	transition-delay: 0.5s, 0.5s;
	justify-self: right;
}

.too-big {
	right: 0;
	top: 0;
}

.comic-desc a {
	font-size: 1.4vw;
}

.comic-desc .summary {
	font-size: 1.2vw;
	transition: font-size ease 1s 0.5s;
}

.placeholder:hover .comic-desc .summary {
	font-size: 1.5vw;
	transition: font-size ease 1s 0.5s;
}