.bfwk-boek-index {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 1em;
	grid-row-gap:  1em;
	/* background-color: #eee; */
	border-radius: 2px;
	/* padding: 1em; */
	margin-bottom: 2em;
}

.bfwk-boek-index > div {
	/* text-align: center; */
	background-color: #3aa8f4;
	color: white;
	padding: 2em;
	font-weight: bold;
	border-radius: 2px;
	font-size: 85%;
}

.bfwk-boek-index > div:hover {
	cursor: pointer;
}

.bfwk-boek-index > div > div {
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: #111;
	color: white;
	font-weight: bold;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-bottom: 1em;
	padding: 1.5em;
	line-height: 100%;
	font-size: larger;
}

/* Media queries */
@media only screen and (min-width: 500px) {

	.bfwk-boek-index {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (min-width: 1024px) {

	.bfwk-boek-index {
		grid-template-columns: 1fr 1fr 1fr;
	}
}