body {
  font-family: "Trebuchet MS";
  color: #000;
  margin: 0;
}

a {
  color: #780000;
}

a:active,
a:hover {
  color: #003049;
}

body > header > * {
  display: flex;
  flex-flow: row wrap;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  width: 100%;
  background-color: #ccc;
}

nav ol {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  padding: 0;
}

nav ol li {
  font-size: 1.25rem;
}

nav ol li a {
  padding: 1em;
  color: #780000;
  display: block;
}

nav ol li a:hover {
  background-color: #78000033;
}

nav ol li a.active {
  pointer-events: none;
  color: #003049;
  text-decoration: none;
}

main {
  margin: 1em;
}

article {
  display: flex;
  flex-flow: row wrap;
}

article.order {
  justify-content: center;
}

h1,
h2 {
  margin: 1.5em 0 1em;
  width: 100%;
  color: #780000;
}

p {
  margin: 0 0 1.5em;
}

footer {
  text-align: center;
  background-color: #eee;
  margin: 2em 0 0;
  padding: 2em 0;
}

.img_left,
.img_right {
  width: 100%;
  text-align: center;
}

.img_left img,
.img_right img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

p.caption {

}

.text_left,
.text_right {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 1em;
}

.text_right > p:first-child {
  margin-top: 1.5em;
}

.form_input {
  display: flex;
  flex-flow: row nowrap;
}

.form_input label {
  text-align: right;
  width: 40%;
  margin: 1em;
}

.form_input input,
.form_input textarea,
.form_input select {
  margin: 1em;
  width: 100%;
}

.form_input input[type=submit] {
  padding: 1em 5em;
  background-color: #003049;
  margin: 2rem 12px;
  float: right;
  color: #fff;
  font-size: 1.25em;
}

.form_error {
  background-color: #f001;
}

.ordered {
  background-color: #3001;
  border-radius: 15px;
  padding: 1em;
  color: #333;
}

@media (min-width: 540px) {
  body > header {
    display: flex;
    flex-flow: row nowrap;
  }
  .logo {
    width: auto;
    object-fit: contain;
  }
  nav {
    align-items: center;
    justify-content: center;
    background: transparent url('../images/texture.png');
  }
  nav ol {
    width: 100%;
    background-color: #eee;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    justify-content: center;
  }
  .img_left,
  .img_right {
    width: 40%;
    margin-right: 10%;
  }
  .img_right {
    margin-left: 10%;
    margin-right: 0;
  }
  .text_left,
  .text_right {
    width: 40%;
    align-content: flex-start;
  }
  .text_right > p:first-child {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  main {
    margin: 1em auto;
    max-width: 960px;
  }
  .text_left,
  .text_right {
    margin-bottom: 4em;
  }
}