:root { /* Color palette */
	--color0: rgb(0, 0, 0);
	--color1: rgb(255, 255, 255);
	--color2: rgb(244,228,179); /* cream */
	--color3: rgb(67,106,109); /* dark teal */
	--color4: rgb(178,200,188); /* teal-gray */
	--color5: ;
}

html {
    min-height: 100%;
    background-image: linear-gradient(to bottom, rgb(67,106,109), rgb(244,228,179, .8));
    /* background: url('/img/bg1.png') no-repeat;
    background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover; */
    font-family: 'Piazzolla', serif;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar {
    display: none;
}

/* table, th, td { border: 1px solid black; border-collapse: collapse;} */
tr {height: 50%;}

.siteContainer {
    margin: auto;
	max-width: 1000px;
	top: 0;
	bottom: 0;
	left: 0px;
}

.headerFull {
    width: 100%;
    top: 0;
    font-size: 1.3em;
}

.headerFull:hover ~ .hr1 {
    border: 1px solid var(--color2);
}

.footer {
    margin: auto;
    text-align: center;
    margin-bottom: 500px;
}

.headerLogo {
    width: 100%;
}

.headerLogo:hover {
    opacity: .8;
}

.headerTitle {
    padding-left: 4%;
    opacity: .35;
    font-family: 'Montserrat', sans-serif; 
    color: rgb(244,228,179);
}

.headerFull:hover .headerTitle {
    opacity: .5;
    text-shadow: 1px 1px #000000;
    font-weight: bold;
}

.headerMobile {
    display: none;
}

.menuFull {
    margin-bottom: -50px;
    font-family: 'Montserrat', sans-serif;
}

.menuFull li {
    list-style-type: none;
    display: inline;
    padding-right: 4%;
}

.menuFull a {
    text-decoration: none;
    color: white;
    transition: .3s;
}

.menuFull a:hover {
    color: var(--color2);
    font-size: 1.25em;
    font-weight: bold;
}

.siteBody {
    display: block;
    margin-top: 20px;
    background-image: linear-gradient(-45deg, rgb(255, 255, 255, .35), rgb(244,228,179, .35));
    border-radius: 5px;
    padding: 8px 12px 8px 12px;
    font-size: 1.15em;
    box-shadow: 5px 10px 20px var(--color3);
}

.siteBody p {
    padding-left: 1%;
    padding-right: 1%;
}

.siteBody hr {
    width: 60%; 
    margin-bottom: 22px;
    opacity: .25;
}

.hopeBanner {
    width: 18%;
    position: relative;
    margin-top: -50px;
    opacity: .5;
    margin-left: 40%;
}

.hopeBanner:hover {
    opacity: .8;
}

.icon {
    display: block;
    margin: auto;
    opacity: .5;
    width: 20%;
}

.icon img {
    display: block;
    margin: auto;
    width: 100%;
    margin-top: -5px;
    height: 38px;
    width: auto;
}

.welcometoeden {
    display: inline;
}

.fb {
    display: inline;
    width: 120px;
    margin-left: 62%;
    margin-bottom: -10px;
    transition: .25s;
}

.fbM {
    width: 120px;
}

.fb:hover {
    border-left: 2px solid var(--color2);
    border-right: 2px solid var(--color2);
}

/* Contact form */

#contactForm {
    width: 88%;
    margin: auto;
    display: block;
    margin-bottom: 150px;
    margin-top: 25px;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
	width: 100%; 
	padding: 12px; 
	border: 1px solid #ccc; 
	border-radius: 4px; 
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; 
	margin-bottom: 16px; 
	resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
	background-color: var(--color4);
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
    float: right; 
    margin-top: 10px; 
    margin-right: 20px; 
    width: 100px; 
    font-weight: bold;
  }
  
  /* When moving the mouse over the submit button, add a color */
  input[type=submit]:hover {
    background-color: var(--color2);
    color: var(--color0);
  }

.h2ContactUs {
    color: white;
    text-align: center;
}

#recaptcha {
    float: left;
}

.menuMobile {
    display: none;
    width: 100%;
    height: 100vh;
    padding-top: 30%;
    transition: .5s;
}

.menuMobile li {
    list-style-type: none;
    color: white;
    font-size: 2.5em;
    padding-bottom: 20px;
    padding-left: 22%;
    font-family: 'montserrat';
    font-weight: bold;
}

.menuMobile a {
    text-decoration: none;
    color: white;
}

.menuMobile a:visited {
    color: white;
}

.mobileMenu li:hover {
    border-left: 2px solid var(--color2);
    border-right: 2px solid var(--color2);
}

#menuTable {
	display: none;
	position: absolute;
	right: 4%;
  	margin-top: 26px;
  	z-index: 1;
  	-webkit-user-select: none;
	user-select: none;
	font-family: 'Roboto Condensed', sans-serif;
	color: white;
	border-radius: 4px;
	padding: 3px;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;  
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Just a quick hamburger  */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* Transform all the slices of hamburger into a crossmark. */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(-45deg) translate(-1px, -1px);
  background: #232323;
}

/*  * But let's hide the middle one. */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(45deg) translate(1px, 0px);
}

/* The last one should go the other direction  */
#menuToggle input:checked ~ span:nth-last-child(2) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}
