@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------------------*/

/*  Body Start  */

body {
	background-color: #000000;
	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*/
	/* background-image: url("../images/background.png");
	background-size: 100vw 100vh;
	background-repeat: no-repeat;
	background-position: center center; */
}

/*  Body End  */

/*--------------------------------------------------------------------*/

/*  Header Start  */

.header {
	/*background-image: url("../images/recommendedreadingbanner.jpeg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;*/
	padding-bottom: 50px;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: auto;
	margin-right: auto;
}

.headerlogo {
	width: 316px;
	height: 585px;
	display: inline-block;
	margin: auto auto;
	padding: 0px;
}

a {
	text-decoration: none;
	color: rgba(255,255,255,1.00);
}

a:hover {
	color: aqua;
	text-decoration: underline;
}

/*  Header End  */

/*-----------------------------------------------------------------------*/

/*  Content Start  */

.content {
	width: 948px;
	margin: 0px auto;
	margin-top: 10px;
}

h1 {
	color: #FFFFFF;
	font-size: 50px;
	text-align: center;
}

p {
	color: #FFFFFF;
	font-size: 30px;
	text-align: center;
}

.row1p1 {
	font-style: italic;
}

h2 {
	color: #FFFFFF;
	font-size: 40px;
	text-align: center;
	margin: 0px auto;
}

.row2block {
	display: block;
	width: 300px;
	margin: 0px auto;
	padding: 0px 5px;
	border-left: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
}

.row2p1 {
	font-size: 25px;
}

#row2block1p1 {
	text-align: left;
	padding-left: 20px;
}

.contentlink {
	color: #FF0004;
}

/*  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-aspect-ratio: 1) {
	
/*-------------------------*/	
	
	.header {
		height: 350px;	
	}
	
	.headermenu {
		width: 790px;
	}
	
	li.headermenuli {
		font-size: 30px;
	}
	
	#row1h1 {
		width: 750px;
	}
	
	#row1p1 {
		width: 400px;
	}
	
	#row2 {
		overflow: auto;
		width: 100%;
	}
	
	.row2block {
		float: left;
		height: 600px;
	}
	
	h2 {
		height: 100px;
	}

/*------------------------*/	
	
}

/*  Large Screen End  */

/*-----------------------------------------------------------------------*/

/*  Small Screen Start  */

@media (max-aspect-ratio: 1) {
	
/*---------------------------*/	
	
	.header {
		height: 460px;	
	}
	
	.headermenu {
		width: 575px;
	}
	
	li.headermenuli {
		font-size: 50px;
	}
	
	#row1h1, #row1p1 {
		width: 400px;
	}
	
	.content {
		width: 675px;
	}
	
	.row2block {
		width: 500px;
		height: auto;
	}
	
	.row1h1 {
		font-size: 70px;
	}
	
	.row2h2 {
		font-size: 60px;
	}
	
	.row2p1 {
		font-size: 40px;
	}

/*--------------------------*/	
	
}

/*  Small Screen End  */