html, body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(../images/woodgrain.jpeg);
    background-size:  cover;
    background-repeat: no-repeat; 
}


/* define a fixed width for the entire menu */
.navigation {
  width: 300px;
  position: absolute;
  left: 0;
  top: 0px;
 
}

/* reset our lists to remove bullet points and padding */
.mainmenu, .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* make ALL links (main and submenu) have padding and background color */
.mainmenu a {
  display: block;
  background-color: #CCC;
  text-decoration: none;
  padding: 10px;
  color: #000;
}

/* add hover behaviour */
.mainmenu a:hover {
    background-color: #C5C5C5;
}


/* when hovering over a .mainmenu item,
  display the submenu inside it.
  we're changing the submenu's max-height from 0 to 200px;
*/

.mainmenu li:hover .submenu {
  display: block;
  max-height: 200px;
}

/*
  we now overwrite the background-color for .submenu links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/

.submenu a {
  background-color: #999;
}

/* hover behaviour for links inside .submenu */
.submenu a:hover {
  background-color: #666;
}

/* this is the initial state of all submenus.
*/
.submenu {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease-out;
}

.container {
 width: 989px;
 margin: 0 auto; 
 padding: 5px;
}

h1 {
  font-family: Impact, Charcoal, sans-serif;
  font-size: 100px;
  letter-spacing: 2.4px;
  word-spacing: 1px;
  color: #BC2C0E;
  font-weight: 400;
  text-decoration: none solid rgb(68, 68, 68);
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 5px 5px black;
}

h2 {
  font-family: Impact, Charcoal, sans-serif;
  font-size: 40px;
  letter-spacing: 2.4px;
  word-spacing: 1px;
  color: #BC2C0E;
  font-weight: 400;
  text-decoration: none solid rgb(68, 68, 68);
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;
  text-align: center; 
  position: relative; 
  top: -80px;
  text-shadow: 2px 2px black;
}

.head {
  text-align: center;
  font-family: Impact, Charcoal, sans-serif;
  font-size: 50px;
  letter-spacing: 0px;
  word-spacing: 0px;
  color: #FF0000;
  font-weight: 700;
  text-decoration: underline solid rgb(68, 68, 68);
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;

}

/* 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: #4CAF50;
  color: red;
  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 */
.container2 {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.button {
  font-size: 12px; 
  line-height: 12px; 
  padding: 8px; 
  border-radius: 15px; 
  font-family: Impact, Charcoal, sans-serif; 
  font-weight: 700; text-decoration: underline solid rgb(68, 68, 68); 
  font-style: normal; 
  font-variant: normal; 
  text-transform: uppercase; 
  background-image: linear-gradient(to right, rgb(28, 110, 164) 0%, rgb(35, 136, 203) 50%, rgb(20, 78, 117) 100%); 
  box-shadow: rgb(0, 0, 0) 5px 5px 15px 5px; 
  border: 2px solid rgb(28, 110, 164); 
  display: inline-block;
}
.button  {
 hover background: #1C6EA4; }
.button:active {
background: #144E75; }
}