@charset "utf-8";
/* CSS Document */

/*Remove the space around the body*/
*{margin: 0; 
  padding: 0;
}

/*CORE STYLES*/

html{
	box-sizing: border-box; 
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-size: 16px;
}
body{
	background: #000; 
	
}
.grid-container{
	display: grid;  
	grid-template-columns: 1fr;  
	background: #242424;
}
h1{
	color: #e79413; 
	font-family: 'Dancing Script', cursive; 
	font-size: 2rem; text-align: center; 
	padding-top: 1%; 
	padding-bottom: 1%;
}
h2{
	color:#9DD3D7; 
	font-size: 1rem; 
	padding-top: 1%;
	padding-bottom: 1%;
	padding-left: 1%; 
}
h4{
	padding: 1%; 
	color:#f9e552; 
	background-color:#1b181b;
	font-size: 1rem;
	font-style: bold;
}

p{
	color: #D2D2D2; 
	text-align: justify; 
	padding-left: 1%; 
	padding-right: 1%; 
	padding-bottom: 1%; 
	font-size: 1rem;
}

a{
	color:#fff;
}
ul{
	padding: 1%; 
	list-style-type: none;
}
li{
	padding-bottom: 10px; 
	padding-right: 1%;
}

/*CUSTOMIZED CLASSES*/
.God{
	color: #FD8653;
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-style: italic;
	font-size: 1rem;
}

.Jesus{
	color: #99FDFB; 
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 1rem;
}
.scripture{
	color: #FFA;
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-style: bold;
	font-size: 1rem;
}

 #divider {
  margin-top: 2%;
  height: 2px;
  width: 1fr;
  background: blue;
  background: linear-gradient(90deg, hsl(0, 0%, 20%), hsl(0, 0%, 70%), hsl(0, 0%, 20%));
}
.number{
	color:#0db9f7;
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-style: bold;
	font-size: 1rem;
	
}


/*HEADER*/
.header{
	background: #1c1716;
}

/* NAVIGATION BAR */
.topnav {
  overflow: hidden;
  background-color: #171413;
}

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1rem;
}

.active {
  background-color: #251618;
  color: white ;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 1rem;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #37342F;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #FAF89C;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
 background-color: #3C3728; 
 color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*SHOWCASE*/
.showcase img{
	height: 400px; 
	width: 100%;
}
/*SECTION*/
.section a{
	color:#fff;
}

.section img{float: left; padding-top: 0.5%; padding-right: 1%;}

.section-list ul{
	padding: 1%; 
	list-style-type: none;
}
.section-list li{
	padding-bottom: 10px; 
	padding-right: 1%;
	color: #D2D2D2;
}

/*CARDS*/
.card-container {
    display: grid;
    padding: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 1rem;
	
}
.card {
    display: grid;
	
}
.card .button {
    align-self: end;
}

.card {
	box-shadow: 0px 1px 5px #555;
    background-color: #3D1F2B;
}
.card__title {
    font-size: 1rem;
	color: #fee8b7; 
	border-bottom: 1px solid #6C7043;
    padding: .5rem;
}
.card__description {
    padding: .5rem;
    line-height: 1.4em;
	font-size: 0.875em;
	color: #D7DA8F;
	border-top: 1px solid #6C7043;
}
.button {
    display: block;
    background-color: #415a7b;
	padding: 10px 20px;
    color: #C1C4A2;
    text-decoration: none;
    text-align: center;
}

.button:hover {
	color: #FFC;
	background-color: #575648;
}

.card__thumbnail img {
	padding-top: 1%;
	width: 100%;   
}

.card a{text-decoration: none;
}

.paginate {
    display: inline-block;
    padding: 2px;
    margin: 2px;
}

.paginate a {
    text-decoration: none;
    color: white;
    float: left;
    padding: 10px 15px;
    margin: 5px 10px;
	font-size: 1rem;
}

.paginate a.active {
    background-color: #072f64;
    color: lightblue;
}

.paginate a:hover:not(.active) {
    background-color: #869ECC;
}



.paginate a:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.paginate a:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.paginate a.active {
    border-radius: 10px;
}

.center {
    text-align: center;
}


/*PAGE*/
.page{
	padding-bottom: 2%;
}


/*FOOTER*/
.footer{
	background: #1c1716;;
}
.footer p{
	color: #e79413;
	font-family: 'Dancing Script', cursive; font-size: 1rem; 
	text-align: center; 
	padding-top: 1%; 
	padding-bottom: 1%;
}


@media screen and (max-width: 600px) {
.header h1{font-size: 1rem;}
.topnav a:not(:first-child), .dropdown .dropbtn {display: none;}
.topnav a.icon {float: right; display: block;}
.topnav.responsive {position: relative;}
.topnav.responsive .icon {position: absolute; right: 0; top: 0;}
.topnav.responsive a {float: none; display: block; text-align: left;}
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {display: block; width: 100%; text-align: left;}
.showcase img{height: 200px; width: 100%;}
.section{padding: 1%;}
.section p{text-align: justify; padding: 1%; font-size: 0.875rem;}
.section h2{padding: left: 1%; font-size: 0.875rem; }
.page{padding-bottom: 2%;}
.footer p{font-size: 1rem;}
}

