.content-books {
}

.div-book-grid-container {
	display: grid;
	grid-template-columns: auto auto auto;
	column-gap: 5px;
	row-gap: 5px;
}

@media screen and (max-width: 900px) {
	.div-book-grid-container {
		display: grid;
		grid-template-columns: auto auto;
	column-gap: 5px;
	row-gap: 5px;
	}
}

@media screen and (max-width: 600px) {
	.div-book-grid-container {
		display: grid;
		grid-template-columns: auto;
	column-gap: 5px;
	row-gap: 5px;
	}
}

.div-book-spacer {
	height: 2vh;
}

.div-book {
	display: grid;
	grid-template-columns: auto auto;
	background: white;
	color: black;
	border: 1px solid #cccccc;
	border-radius: 10px;
	width: 100%;
}

.div-book img {
	height:20vh;
	padding:.5em;
	padding-right:0px;
}
.div-book div {
	padding:1em;
	padding-left:0px;
}
.div-book h1 {
	width:100%;
}
.div-book p {
	width:100%;
}


.div-book a {
	background: #d4f0fd;
	color: #2d2f2e;
	text-align: center;
	padding: 0.4em;
	margin-top: 1em;
	border-radius: 5px;
	border: 1px solid #26084e11;
	outline: 1px solid #ffffff55;
	outline-offset: -3px;
	text-decoration: none;
}
.div-book a:visited {
	color:#2d2f2e;
}
.div-book a:hover {
	background: #00bd9a;
	border: 1px solid #26084ecc;
}