﻿.book-box,
.book-box:active,
.book-box:link,
.book-box:visited {
	float: left;
	margin: 0 0 15px 20px;
	padding: 10px;
	border: 1px solid black;
	background-color: white;
	text-decoration: none;
	position: relative;
}

.book-cover {
	width: 175px;
	height: 250px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 0 0;
}

.book-text {
	width: calc(100% - 30px);
	padding: 5px;
	position: absolute;
	bottom: 10px;
	left: 10px;
	background-color: rgba(255, 255, 255, 0.9);
}

.book-box:hover > .book-text {
	display: none;
}

.book-title {
	font-size: 15px;
	font-weight: bold;
	color: darkslategray;
}

.book-author {
	font-size: 13px;
	color: lightslategray;
	font-style: italic;
	text-decoration: underline;
}
