/* Create navbar using html list elements */
ul {
  z-index:10;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 0, .25);  
  font-family: Arial, Helvetica, sans-serif;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #111;
}

.active {
  background-color: #04AA6D;
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

.head {
	text-shadow: 2px 2px #000000;
	text-align: center;
	font-size: 90px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: italic;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column {
  flex: 50%;
}

.frame {
	position:fixed;
	top:25%;
	left:63%;
	width:300px;
	border:15px solid #ffff00;
	background-color:#fff;
	text-align:center;
	padding:20px;
}

p, h1 {
	font-family: Arial, Helvetica, sans-serif;
}

p .yellowText {
	color: #ffff00;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #ffff00;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

/* This is the styling for the hover functions */
.hide {
  display: none;
}

.myDIV:hover + .hide {
  display: block;
  color: blue;
  font-size: 14px;
}

.contactFooter {
  position:fixed;
  bottom:0;
  width:100%;
  background: rgba(255, 255, 0, .75);  
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel {
	flex: 33.3%;
	padding:20px;
	text-align: center;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  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: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}