/* ---------- H O M E ------------- */
:root{
	--green: #169b62;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
}

body.home{
	font-size: 20px;
}

body.home a{ color: #000;}
body.home a:hover{ color: #169b62;}

body.home #background-image {
  min-height: 200vh;
  min-width: 150vw;
  pointer-events: none;
  display: block;
  position: fixed;
  width: auto;
  height: auto;
  top: 50%;
  filter: blur(15px);
  opacity: .5;
  mix-blend-mode: luminosity;
/*  mix-blend-mode: normal;
  filter: blur(0px);*/
  transform-origin: center;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
}

body.home header{
	width: 80%;
	margin: auto;
	text-align: center; 
	padding: 30px;
	margin-bottom: 60px;
}

body.home header h1{
	font-size: 6em;
}

body.home main{
	width: 80%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

body.home .chapeau{
	font-size: 1em;
	line-height: 1.5;
	width: 58%;
	margin-bottom: 250px;
}

body.home h3{
	margin-bottom: 0;
}

body.home p + h3{
	margin-top: 2em;
}

body.home .books{
	width: 38%;
	margin-left: 4%;
}

body.home .books h2{
	margin-top: 0;
}

body.home .books-list{
	padding: 0;
}

body.home .books-list li{
	font-family: "Garabossoil", sans-serif;
	text-transform: lowercase;
	font-size: 3em;
	list-style: none;
	margin-bottom: 0.2em;
	margin-top: 0.25em;
}

body.home .books-list li a{
	color: #000;
	margin-bottom: 10px;
	text-decoration: none;
}

body.home .books-list li a:hover{
	color: DimGray;
}



