article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body, html {
  height: 100%;
}

/* Style for image and company name at top of page */
.hero-image {
  background-image: url("carwash.jpg");
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-bottom: 2px solid black;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2vw;
  color: white;
  border: 2px solid black;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

/* Style for nav bar */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #86aaba;
  border-bottom: 2px solid black;
  text-shadow: 2px 2px 5px black;
}

li {
  float: right;
  border-left: 1px solid black;
}

.active {
  background-color: #000000;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #000000;
}

/* Style for body */
body {
  font-family: "book antiqua";
  background-color: black;
}

.main-text { 
  font-size: 18px;
}

#header-text {
  color: white;
  text-shadow: 2px 2px 5px black;
}

.container {
  margin: auto;
  padding: 8px;
  background-color: #f7771d;
}

.container h1 {
  color: white;
  text-shadow: 2px 2px 5px black;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Style for successful contact info submission */
#contact-submission {
  text-align: center;
  color: white;
  text-shadow: 2px 2px 5px black;
}

/* Style for prices and promotions tables */
#prices {
  margin: auto;
  width: 80%;
  border-collapse: separate;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  border-spacing: 20px;
}

#prices td {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("carwash.jpg");
  color: white;
  text-shadow: 2px 2px 5px black;
  border: 2px solid black;
  vertical-align: top;
}

#promos {
  margin: auto;
  width: 80%;
  border-collapse: separate;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  border-spacing: 20px;
}

#promos td {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("carwash.jpg");
  color: white;
  text-shadow: 2px 2px 5px black;
  border: 2px solid black;
  vertical-align: top;
}

/*table {
  border-spacing: 20px;
}

th, td {
  border: 2px solid black;
  vertical-align: top;
  background-color: white;
}*/

/* Style for video on home page */
#video {
  height: 100%;
  width: auto;
}

/* Style for map on about page */
#map {
  height: 100%;
  width: auto;
}

/* Style for footer */
.footer {
  text-align: center;
  background-color: #f7771d; /*orange*/
  padding: 8px;
  color: white;
  text-shadow: 2px 2px 5px black;
}