* {
  box-sizing: border-box;
}

*:focus {
    outline: none;
}

body, html {
  height: 100%;
  margin: 0;
}

.bg {
  /* The image used */
  background-image: url("/images/lightning-strike.png");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
	color: #ffffff;
	font-family: 'Source Code Pro', monospace;
	font-weight: 600;
	padding: 20px;
	cursor: pointer;
	font-size: 20px;
}

.footer {
	position: absolute;
	bottom: 0px;
	width: 100%;
	/*background-color: #000000;*/
	color: #ffffff;
	display: inline-block;
	padding: 10px;
	text-align: center;
	background-color: rgba(0,0,0,.5);
	font-family: 'Source Code Pro', monospace;
	font-size: 14px;
}

.footer a {
	color: #ffffff;
	text-decoration: none;
	transition: 0.3s;
}

.footer a:hover {
	color: #818181;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 30px;
	font-family: 'Source Code Pro', monospace;
}

.sidenav a {
  /*padding: 8px 8px 8px 32px;*/
  text-decoration: none;
  font-size: 13px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 36px;

}

#close {
	color: #ffffff;
	cursor: pointer;
	transition: 0.3s;
}

#close:hover {
	color: #818181;
	cursor: pointer;
}

#main {
  transition: margin-left .5s;
  /*padding: 16px;*/
}

.caption {
	position: absolute;
    left: 0;
    top: 35%;
    width: 100%;
    text-align: center;
    color: #ffffff;
	font-family: 'Arbutus Slab', serif;
}

.border {
	background-color: rgba(0,0,0,.5);
    color: #fff;
    padding: 18px;
    font-size: 2vw;
    letter-spacing: 5px;
	display: block;
}

.border2 {
	display: none;
}

#hideMessage {
	width: 100%; 
	padding: 0px 25px; 
	text-align: center;
	opacity: 0;
	 transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
}

#btnVisit {
	font-family: 'Source Code Pro', monospace;
	cursor: pointer;
}

#btnVisit:hover {
	background-color: #3C3C3C;
}

#learnMore {
	font-family: 'Source Code Pro', monospace;
	color: #ffffff;
	margin: 20px 0px;
	background-color: rgba(0,0,0,.5);
	display: inline-block;
	padding: 10px;
	text-transform: uppercase;
	-webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
	transition: .5s ease;
}

#learnMore:hover {
	background-color: rgba(0,0,0,1);
}

@media only screen and (max-width: 600px) 
{
	.caption {
		 top: 25%;
	}
	
	.border {
		display: none;	
	}
	
	.border2 {
		background-color: rgba(0,0,0,.5);
	    color: #fff;
    	padding: 18px;
		letter-spacing: 5px;
		display: inline-block;
		font-size: 20px;
		line-height: 36px;
	}
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

input {
	width: 100%;
	padding: 5px;
	margin-top: 15px;
	-webkit-appearance: none;
    border-radius: 0;
	border: 1px solid #ffffff;
	font-size: 16px;
}

#emailAddress {
	position: absolute; 
	bottom: 10px; 
	left: 50%; 
	transform: translate(-50% , 0px); 
	-webkit-transform: translate(-50%, 0px);
}

.button {
	-webkit-appearance: none;
    border-radius: 0;
	background-color: #818181;
	color: #ffffff;
	border: 1px solid #ffffff;
}