@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: 30px;
}

.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: 0px;
	border-bottom: 5px solid #FFFFFF;
}

li.headermenuli {
	display: inline;
	margin-right: 5px;
	margin-left: 5px;
}

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;
}

h2 {
	font-size: 40px;
}

p {
	color: #FFFFFF;
	font-size: 30px;
	text-align: center;
}

.row1p1 {
	font-style: Normal;
	text-indent: 1em;
	text-align: left;
}

.row1p1:first-letter {
	font-size: 200%;
	font-family:monotype corsiva, zapfino;
	letter-spacing: 0.07em;
}

.row1p1:first-line {
	line-height: 1em;
	text-indent: 50px;
}

.row1h2 {
	color: #FFFFFF;
	height: 50px;
	text-align: left;
	
}

.row1h3 {
	height: 50px;
	color:#267B11;
	text-align: center;
	
}

.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;
	}
	
	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;
	}
	
	.row1h1 {
		font-size: 70px;
	}

/*--------------------------*/	
	
}

/*  Small Screen End  */