@charset "utf-8";
/* CSS Document */

body, html {
	background-image: url("../images/backgrounds/leatherBG-1280x908.jpg");
	background-attachment: fixed;
	background-size: cover;
}

.heading-container {
	background-image: url("../images/backgrounds/bg-4.jpg");
	border-bottom: 2px solid #387538;
	padding-top: 10px;
}
.heading-item {
	padding-top: 15px;
	text-align: center;
}
.heading-item h2, h4, h5 {
	margin: 0px;
}

.bibleBooks-container {
	display: flex;
	justify-content: center;
	border: 8px ridge #387538;
	margin: 15px 200px 0px;
}
.bibleBooks {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: white;
	padding-bottom: 25px;
}
.bibleBooks h2 {
	margin-bottom: 20px;
	border-bottom: thin solid #387538;
	width: 100%;
	text-align: center;
}
.bibleBooks h4 {
	background-color: blanchedalmond;
	border: thin solid #387538;
	border-radius: 30px;
	margin: 0px;
	padding: 10px 0px;
	color: #387538;
}
.bibleBooks h4:hover {
	background-color: #387538;
	border: thin solid blanchedalmond;
	color: blanchedalmond;
}
.bibleBooks table {
	width: 75%;
}
.bibleBooks table td {
	text-align: center;
}
.bibleBooks a {
	text-decoration: none;
}
.bibleBooks-OT {
	flex: 1;
	background-image: url("../images/backgrounds/genesisBG.png");
    background-size: cover;
    background-attachment: scroll;
    background-position: top;
    background-repeat: no-repeat;
	border-right: 2px solid #387538;
}
.bibleBooks-NT {
	flex: 1;
	background-image: url("../images/backgrounds/matthewBG.png");
    background-size: cover;
    background-attachment: scroll;
    background-position: top;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
	.heading-container {
		padding: 20px;
	}
	.bibleBooks-container {
		margin: 15px;
	}
	.bibleBooks table {
		width: 100%;
	}
}

@media screen and (max-width: 900px) {
	.bibleBooks-container {
		flex-direction: column;
		font-size: 14px;
	}
	.bibleBooks-OT {
		border-right: none;
		border-bottom: 2px solid #387538;
	}
}











