@charset "UTF-8";
/* CSS Document */
html, body{
	margin: 0px;
	padding: 0px;
}
header{
	font-family: 'Handlee', sans-serif;
	font-size: 75px;
	text-align: center;
	margin-top: 75px;
}
a{
	text-decoration: none;
	color: #023475;
}
a:hover{
	color: #89E0F9;
}
nav{
	font-family: 'Handlee', sans-serif;
	width: 1000px;
	margin: 0 auto;
}
nav ul{
	margin: auto;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
}
nav li{ 	
	position: relative;
	font-size: 24px;
}
nav li .books{
	display: none;
}
nav ul li:hover .books{
	display: block;
	position: absolute;
	width: 250px;
	background: rgba(215,239,246,1.00);
}
nav ul li:hover .books ul{
    padding-left: 0;
	display: flex;
	flex-direction: column;
}
nav ul li:hover .books ul li{
	border: 1px solid #000000;
}
nav li .keep{
	display: none;
}
nav ul li:hover .keep{
	display: block;
	position: absolute;
	width: 300px;
	background: rgba(215,239,246,1.00);
}
nav ul li:hover .keep ul{
	list-style: none;
    padding-left: 0;
	display: flex;
	flex-direction: column;
}
nav ul li:hover .keep ul li{
	border: 1px solid #000000;
}
.main{
	width: 1000px;
	margin: auto;	
}
.main img{
	float: left;
	width: 360px;
	height: 470px;
}
.main .text{
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	margin-left: 400px;
	line-height: 30px;
}