/* CSS Document */
*
{
	margin: 0;
	padding: 0;
}
body
{
    text-align: left;
    background-color: papayawhip;
	background-image: url("../images/JLB logo Make Him Known 10.png");
	background-repeat: no-repeat;
	background-position: 50% 80px;
background-attachment: fixed;	
    color: #000000;
    font-family: Arial, "Arial Black", "Arial Narrow", "Arial Rounded MT Bold";
    font-size: 16px;
}

h2 
{
	font-weight:  600;
	font-display: #FF0000;
	font-size: 24px;
	font-family: Arial, "Helvetica", "Gill Sans", "Gill Sans MT", "Myriad Pro", "Helvetica";
	text-align: center;
	color: #FF0000;
	text-shadow: 2px 2px 2px black;
}

h3 
{
	font-weight:  600;
	font-display: #FF0000;
	font-size: 24px;
	font-family: Arial, "Helvetica", "Gill Sans", "Gill Sans MT", "Myriad Pro", "Helvetica";
	text-align: center;
	color: #B22222;

}

h4
{
	font-weight: 300;
	font-display: #FFcccc;
	font-size: 32px;
	font-family: courgette, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", Cambria, 'Liberation Serif', Times, 'Times New Roman', 'serif';
	text-align: center;
	color: red;
}
h5
{
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	color: cadetblue;
	padding: 8px;
	
}
table {
	width: 80%;
}

th, td {
  padding: 10px;
}
table.center
 { margin-left:auto; margin-right:auto; }
 
 
.border 
{
	border: 2px solid#33FFFC;
/**optional**/
	border-radius:5px 5px 5px 5px;
	margin: 3px;
	padding: 5px 5px 5px 5px;
}
ul
{
		list-style-type: none;
		margin: 0;
		padding: 5px 0px 5px 0px;
		overflow: hidden;
		background: #16068D;
}
li
{
		display: inline-block;
}
li a, .dropbtn
{
	display: inline-block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}
li a:hover, .dropdown:hover .dropbtn
{
	background-color: #33cccf;
}

li .dropdown
{
	display: inline-block;
}
.dropdown-content
{
	display: none;
	position: absolute;
	background: lightblue;
	min-width: 120px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2)
}

.dropdown-content a
{
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover
{
	background:#ffff00;
}
.dropdown:hover .dropdown-content
{	
	display: block;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  border-width: 50;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
   
  margin: 10% auto; /* 15% from the top and centered */
  padding: 20px;
background-color: paleturquoise;
  border: 1px solid #888;
  width: 60%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: blue;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on the button, open the modal
btn.onclick = function() {
  modal.style.display = "block";
}

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
}

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event)
{
  if (event.target == modal) {
    modal.style.display = "none";
  }

