html, body {
	font-family: Montserrat;
}
.books {
	text-align: left;
}
.thumbnail {
	display: inline-block;
	width: 180px;
	height: 240px;
	background-color: #ccc;
	margin: 5px;
	cursor: pointer;
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	border: 1px solid #aaa;
}
.thumbnail span.name {
	display: block;
	word-break: break-word;
	color: #000;
	background-color: rgba(256,256,256,0.9);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 9px;
	font-size: 11px;
	z-index: 2;
	text-transform: uppercase;
	line-height: 15px;
}
.thumbnail span.size {
	word-break: break-word;
	display: block;
	font-size: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 5px;
	background-color: rgba(256,256,256,0.8);
	color: #000;
	z-index: 2;
	display: none;
}
.thumbnail img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(256,256,256,0.1);
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fullscreen {
	background-color: #333;
}
p.brand {
	background-color: #bbb;
	color: #fff;
	padding: 5px 8px;
	font-weight: bold;
	font-size: 18px;
}