:root {
  --header-background-color: #800000;
  --header-border-color: #feb431;
  --header-text-color: #ffffff;
  --body-text-color: #333333;
}

#header {
  background: linear-gradient(to bottom right, var(--header-background-color), #400000);
  border: 5px solid var(--header-border-color);
  color: var(--header-text-color);
  flex-direction: column;

  text-align: center;
}

#header h1 {
  font-size: 7em;
  margin: 1% 0;
}

#molding {
  background: url(../images/molding.gif);
  width: 100%;
  min-height: 10px;
}

#header-nav {
  display: flex;
  flex-direction: row;
  margin: 0 5%;
  align-content: space-between;
  justify-content: space-between;
}

#header-nav-item {
  display: inline;
  font-size: 1.2em;
}

#header-nav-item:hover {
  color: var(--header-border-color);
  cursor: pointer;
}

html {
  background: url(/static/images/test_background.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  font-family: 'Times New Roman', Helvetica, serif;
  color: var(--body-text-color);
  margin: 0 0 150px 0;
}

h2 {
  font-size: 2.5em;
}

p {
  font-size: 1.2em;
}

#content {
  margin: 32px 25%;
}

#footer {
  text-align: center;
  font-size: 0.8em;

  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: linear-gradient(to bottom right, var(--header-background-color), #400000);
  color: var(--header-text-color);
}

#footer span {
  font-variant: small-caps;
  font-size: 0.8em;
}

#footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#footer-links li {
  list-style-type: none;
  margin: 0 8px;
}

#footer p {
  margin: 4px 0;
  font-size: 0.8em;
}

#footer a {
  color: var(--header-text-color);
}
