@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%;
}

#divider {
  margin-top: 2%;
  margin-bottom: 2%;
  height: 2px;
  width: 1fr;
  background: blue;
  background: linear-gradient(90deg, hsl(0, 0%, 20%), hsl(0, 0%, 70%), hsl(0, 0%, 20%));
}

.title a{color: #0F0; text-decoration: none;}

/*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%;}


.sub_grid {
  display: grid;
  margin-top: 3%;
  margin-left: 1%;
  margin-right: 1%;
  padding-bottom: 2%;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  align-items: stretch;
  /*text-align: right;*/
 }

.sub_grid .card {
  border: 1px solid #ccc;
  background-color: #2e4942;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
}

.sub_grid img {
  max-width: 100%;
  padding-top: 3%;
  padding-left: 2%
 
}
.sub_grid .card p{padding-top: 2%; padding-bottom: 5%;}

.sub_grid a {
	text-decoration: none;
	
}




/*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%;}
.sub_grid{display: grid; grid-template-columns: 1fr;}
.page{padding-bottom: 2%;}
.footer p{font-size: 1rem;}
}

