:root {
  --background-color:#ac4532;
}

body, html {
  margin: 0;
  font-size: 2vh;
  font-family: courier, lucida, serif;
  line-height: 1.5em;
  color: white;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.paragraph-box {
  background-color: var(--background-color);
  padding: 10px;
  padding-left: 40px;
  padding-right: 40px;
}

.image {
  background-position: center;
  background-size: auto 100vh;
  background-attachment: fixed;
  max-width: 100vw;
}

#header-image {
  background-position: top center;
  height: 100vh;
  background-image: url("images/header.jpg");
}

#header-logo {
  display: block;
  margin: auto;
  width: 50%;
  padding: 10px;
  min-width: 256px;
}

#footer-image {
  background-position: bottom center;
  height: 100vh;
  background-image: url("images/footer.jpg");
}

#copyright {
  margin: auto;
  padding: 20px;
  background-color: var(--background-color);
}