html{ /* entire documents parameters */
  height: 100%;
  margin: 0;
  padding: 0;
}

body{ /* Body parameters */
  height: 100%;
  margin: 0;
  padding: 0;
}

footer{ /* footer parameters */
  background-color:black;
  position: absolute;
  text-align: center;
  color: #be1e2d;
  width:100%;
  height:7%;
  margin: 0;
}

header{ /* header parameters */
  background-color:black;
  width: 100%;
  height: 10%;
}

main{ /* main parameters */
  background-image: url(Images/BG_2.png); /* background image */
  background-size: cover; /* cover the entire main section */
  background-repeat:no-repeat; /* no repeating of the image */
  height: 1100px;
  margin: 0;
  padding: 20px;
}

section { /* basic section parameters */
  float: left;
  background-color: rgba(0,0,0,.4);
  padding: 15px;
  width: 40%;
  color: white;
  font-size: 32px;
  border: 5px solid;
  margin: 0px 50px 0px;
  text-indent: 50px;
}

.slocation{ /* specific class parameters */
  text-indent: 0px;
  float: none;
  position: relative;
  display: block;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
  text-align: center;
}

section h1{ /* h1 for all sections parameters */
  text-align: center;
  margin: 0;
}

figure{ /* parameters for figure */
  padding: 0;
  margin: 0;
  float: right;
  border: 5px solid white;
  box-shadow: 10px 10px 8px #888888;
}

figcaption{ /* caption for the figure */
  text-align: right;
  color: white;
  padding-right: 10px;
}

nav{ /* nav section parameters */
  overflow: hidden;
  background-color:black;
  height: 100%;
  float: right;
}

nav a { /* content in the nav section parameters */
  float: left;
  font-size: 32px;
  color: white;
  height: 100%;
  text-align: center;
  line-height: 90px;
  padding: 0px 16px;
  text-decoration: none;
}

nav a:hover{ /* what happens when you hover over the contents of the nav */
  background-color: #be1e2d;
}

.headerlogo{ /* header logo paramters specific to that logo */
  float: left;
  width: auto;
  height: 100%;
}
.location{ /* map logo paramters specific to that logo */
  width: 80%;
  height: 50%;
  border: none;
  display: block;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}