/*Header*/
h1 a {
	align-items: center;
	color: black;
	display: flex;
	font-size: 2rem;
	justify-content: flex-start;
	text-decoration: none;
}
.logo {
	color: rgba(20, 89, 14, 1);
	margin-right: 1em;
	width: 4rem;
}
nav ul {
	display: flex;
	gap: 3rem;
	list-style: none;
	padding: 0;
	position: relative;
}
nav a {
	color: black;
	font-size: 2rem;
	text-decoration: none;
}

/* MAIN */
article {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}
article picture {
	flex-shrink: 0;
	width: 50%;
}
article img {
	max-height: 100%;
	max-width: 100%;
}
.bookcover {
	max-height: 400px;
	overflow: hidden;
}
.bookcover img {
	max-height: none;
	max-width: none;
	width: -webkit-fill-available;
}

/*Footer*/
footer  {
	background: rgba(20, 89, 14, 1);
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	padding: 1rem;
}
footer ul {
	list-style: none;
  	padding: 0;
	position: relative;
}
footer a {
	color: #ffffff;
	text-decoration: none;
}

/* BASE */
body {
	font-family: sans-serif;
	font-size: 16px;
	line-height: 1.4em;
	max-width: 1200px;
}
h1, h2, h3, h4 {
	font-family: serif;
}
a:hover {
	text-decoration: underline;
}