@import url('https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;1,400;1,500&display=swap');

body {
	font-family: 'Ubuntu', sans-serif;
	margin-top: 	3em;
	margin-left: 2em;
	margin-right: 2em;
	text-align: center;
}

h1 {
	font-size: 28pt;
	font-family: 'Londrina Solid', sans-serif;
}

span.link {
	text-decoration: underline;
	cursor: pointer;
}

div.library {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 2em;
}
div.logo {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 20%;
	height: 4em;
	margin-left: 0.25em;
	margin-right: 0.25em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	cursor: pointer;
}
div.logo:hover {
	transition-duration: 0.15s;
	transform: scale(1.15);
}

div.logo.aan-den-ijssel {
	background-image: url(logo/aan-den-ijssel.svg);
}
div.logo.aan-de-vliet {
	background-image: url(logo/aan-de-vliet.svg);
}
div.logo.zb {
	background-image: url(logo/zb.svg);
}
div.logo.oostland {
	background-image: url(logo/oostland.svg);
}
div.logo.noordwest-veluwe {
	background-image: url(logo/noordwest-veluwe.svg);
}
div.logo.de-groene-venen {
	background-image: url(logo/de-groene-venen.svg);
}
div.logo.deventer {
	background-image: url(logo/deventer.svg);
}
div.logo.oosterschelde {
	background-image: url(logo/oosterschelde.svg);
}
div.logo.flevomeer {
	background-image: url(logo/flevomeer.svg);
}
div.logo.biblionu {
	background-image: url(logo/biblionu.svg);
}
div.logo.west-achterhoek {
	background-image: url(logo/west-achterhoek.svg);
}
div.logo.rotterdam {
	background-image: url(logo/rotterdam.svg);
}

ul.location {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	list-style: none;
	padding: 0;
}

ul.location li {
	background-color: #f0f0f0;

	box-shadow: 0.25em 0.25em 0.25em lightgrey;

	border-radius: 0.25em;
	width: 20%;
	height: 3.5em;

	box-sizing: border-box;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0.5em;

	padding: 0.25em;

	cursor: pointer;
}

ul.location li:hover {
	font-weight: bold;
	background-color: #e0e0e0;
	transition-duration: 0.15s;
	transform: scale(1.15);
}

@media only screen and (max-width: 800px) {
	ul.location li {
		width: 40%;
	}
	div.logo {
		width: 30%;
		height: 5em;
	}
}

@media only screen and (max-width: 600px) {
	ul.location li {
		width: 40%;
	}
	div.logo {
		width: 30%;
		height: 4em;
	}
}
