html {
  background-color: #333333;
}

body {
  font-family: "D-DIN";
  margin: 0;
  padding: 0;
}

header {
  font-weight: bold;
  background-image: url("images/home.jpg");
  height: 600px;
}

footer {
  border-color: #333333;
  border-style: solid;
  border-width: 1px 0px 0px 0px;
}

nav {
  background-color: rgba(0, 0, 0, .5);
}

#nav-list {
  display: flex;
  margin: 0px;
  padding: 0px;
  color: white;
}

.nav-list-item {
  flex-grow: 1;
  flex-basis: 0px;
  list-style: none;
  border-width: 0px 1px 0px 0px;
  border-style: solid;
  border-color: black;
  padding: 0px;
}

.nav-list-item a {
  display: block;
  color: white;
  text-align: center;
  padding: 20px 0 20px 0;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 20px;
}

.nav-list-item a:visited {
  color: white;
}

.nav-list-item a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.nav-list-item a:active {
  color: white;
}

.nav-list-item-start {
  border-left: 0px;
}

.nav-list-home {
  flex-grow: 2;
}

.nav-list-current {
  background: rgba(0, 0, 0, 0.3);
}

.nav-list-item-end {
  border-right: 0px;
}

#site-container {
  max-width: 1200px;
  min-width: 768px;
  margin: 0px auto 0px auto;
  background: #999999;
}

.site-horizontal-section-padding {
  padding-left: 10px;
  padding-right: 10px;
}

.site-vertical-section-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}