@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------------------*/

/*  Body Start  */

body {
	background-color: #000527;
	margin: 0px 0px 0px 0px;
	min-height: 100vh; /*means that the minimum height of an object should be 100% of the viewport height*/
	display: flex; /*part of the code needed to make the footer stay at bottom*/
	flex-direction: column; /*same as previous*/
}

/*  Body End  */

/*--------------------------------------------------------------------*/

/*  Header Start  */

.header {
	background-image: url("../images/recommendedreadingbanner.jpeg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.headerlogo {
	width: 330px;
	height: 330px;
	display: block;
	margin: 0px auto;
	padding: 0px;
}

.headermenu {
	font-size: 20px;
	text-align: center;
	margin: 0px auto;
	padding: 0px;
	position: relative;
	bottom: 50px;
}

li.headermenuli {
	display: inline;
	margin-right: 10px;
}

a {
	text-decoration: none;
	color: rgba(255,255,255,1.00);
}

a:hover {
	color: aqua;
	text-decoration: underline;
}

/*  Header End  */

/*-----------------------------------------------------------------------*/

/*  Content Start  */

.content {
	width: 800px;
	margin: 0px auto;
}

h1 {
	color: #FFFFFF;
	font-size: 28px;
}

p {
	color: #FFFFFF;
	font-size: 18px;
}

#row1h1, #row1p1 {
	margin: 0px auto;
	text-align: center;
	padding: 10px;
}

#row1p1 {
	padding-bottom: 40px;
}

.row2block {
	display: block;
	width: 185px;
	height: 375px;
	margin: 0px auto;
	padding: 0px 5px;
}

.row2imageblock {
	width: 180px;
	height: 300px;
}

.row2image {
	margin: 0px;
	width: 180px;
}

#row2block2image {
	padding-top: 5px;
}

#row2block3image {
	padding-top: 30px;
}

#row2block4image {
	padding-top: 35px;
}

#row2block9image {
	padding-top: 10px;
}

#row2block11image {
	padding-top: 25px;
}

.row2h {
	margin: 0px;
	width: 180px;
	font-size: 20px;
	text-align: center;
	padding: 5px 0px 15px 0px;

}

.row2p {
	margin: 0px;
	width: 180px;
	font-size: 18px;
	text-align: center;
}

/*  Content End  */

/*----------------------------------------------------------------------*/

/*  Footer Start  */

.footer {
	background-image: url("../images/moonbanner2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 200px;
	margin-top: auto;
}

p.footerp {
	color: rgba(255,255,255,1.00);
	text-align: center;
	font-size: 30px;
	margin: auto;
	position: relative;
	top: 75px;
}

a.footerbutton {
	color: #F70B0F;
}

/*  Footer End  */

/*----------------------------------------------------------------------*/


/*  Large Screen Start  */

@media (min-width: 780px) {
	
/*-------------------------*/	
	
	.header {
		height: 330px;	
	}
	
	.headermenu {
		width: 720px;
	}
	
	#row1h1 {
		width: 750px;
	}
	
	#row1p1 {
		width: 400px;
	}
	
	.row2 {
		overflow: auto;
		width: 100%;
	}
	
	.row2block {
		float: left;
	}

/*------------------------*/	
	
}

/*  Large Screen End  */

/*-----------------------------------------------------------------------*/

/*  Small Screen Start  */

@media (max-width: 780px) {
	
/*---------------------------*/	
	
	.header {
		height: 350px;	
	}
	
	.headermenu {
		width: 400px;
	}
	
	#row1h1, #row1p1 {
		width: 400px;
	}
	
	.content {
		width: 450px;
	}

/*--------------------------*/	
	
}

/*  Small Screen End  */