h3 {
  font-weight: bold;
  color: #ca600a;
  text-transform: uppercase;
  font-size: 21px;
  margin-bottom: 16px;
}

.term {
  font-weight: bold;
  color: #ca600a;
}

/* Sections */
body {
  line-height: 1.5;
  font-family: "Oxygen", sans-serif;
  font-size: 14px;

  background-image: url("../images/background.jpg");
  background-position-x: center;
  background-position-y: top;
  background-position: center top;
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

header {
  background-color: black;
  color: white;
  height: 100px;
  width: 100%;

  flex-direction: column-reverse;
}

header .container {
  flex-direction: row;
}

header h1 {
  flex-grow: 1;
  font-size: 48px;
  font-family: "Kaushan Script", cursive;
}

header h1 .honors {
  font-size: 24px;
}

header ul {
  display: flex;
  flex-grow: 1;
  flex-direction: row-reverse;
}

header li {
  display: inline-block;
  margin-left: 15px;
  padding-top: 40px;

  text-transform: uppercase;
}

header li a {
  color: #888;
  text-decoration: none;
}

header li a:hover {
  color: #ca600a;
}

.page-home #link-home a,
.page-preparing #link-preparing a,
.page-about #link-about a,
.page-hours #link-hours a,
.page-resources #link-resources a {
  color: white;
}

.subheader {
  flex-direction: column;
  height: 117px;
}

.subheader-row {
  flex-direction: row;
}

.subheader .notice {
  flex-grow: 1;
  font-size: 18px;
  padding: 6px 2px 2px 2px;
  line-height: 1.1em;
  font-weight: bold;

  visibility: hidden;
}

/* the notice is turned off by default and turned on, on a page-by-page basis */
.page-home .subheader .notice {
  visibility: visible;
}

.subheader .notice a {
  color: #800000;
}

.subheader .subheader-text {
  flex-grow: 1;
  flex-direction: row-reverse;
}
.subheader h2 {
  font-size: 36px;
  margin-top: 26px;
  font-family: "Kaushan Script", cursive;

  /* this will be turned on in each page's unique CSS */
  display: none;
}

.main {
  background-color: white;
  flex-direction: row;
  padding: 30px;
}

.main p {
  margin-bottom: 16px;
}

.main a {
  color: #009e8e;
}

.main-column,
.sidebar-column {
  padding: 7px 15px;
}

.main-column {
  flex-direction: column;
  flex-grow: 2;
}
.sidebar-column {
  flex-direction: column;
  flex-grow: 1;
}

.traditional-list {
  list-style: disc;
  list-style-position: outside;
}

.traditional-list li {
  margin-left: 13px;
}

footer {
  padding-top: 40px;
  padding-bottom: 30px;
}
footer p {
  text-align: center;
}

/* flexbox layout */
.main-content {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.main-content.main {
  width: 100%;
  max-width: 900px;
}

.container {
  display: flex;
}

@media only screen and (min-width: 800px) and (max-width: 960px) {
  header h1 {
    font-size: 32px;
    padding-top: 20px;
  }
  header h1 .honors {
    font-size: 16px;
  }

  .sidebar-column {
    font-size: 0.7em;
  }
  .main-content {
    max-width: 760px;
  }
  .main-content.main {
    max-width: 760px;
  }
}
@media only screen and (max-width: 800px) {
  header .main-content {
    flex-direction: column;
    justify-content: center;
    /*
    font-size: 32px;
    padding-top: 20px;
    */
  }
  header h1 {
    margin: 0 0 10px 0;
    height: 20px;
    text-align: center;
  }

  header .nav-wrapper {
    display: inline-block;
    margin: 0 auto;
    width: 440px;
  }

  header .nav-wrapper ul {
    margin: 0 auto;
    font-size: 12px;
  }

  .subheader {
    height: 80px;
  }
  .subheader-text {
    flex-direction: rows;
  }

  .subheader h2 {
    margin-top: 8px;
    font-size: 28px;
  }
  .subheader .notice {
    font-size: 14px;
  }

  .sidebar-column {
    font-size: 0.7em;
    margin-right: 25px;
  }
  .main-content {
    max-width: 760px;
  }
  .main-content.main {
    max-width: 760px;
  }
}

@media only screen and (max-width: 599px) {
  header .main-content {
    flex-direction: column;
    justify-content: center;
  }
  header h1 {
    font-size: 32px;
    padding-top: 20px;
    height: 20px;
    text-align: center;
  }
  header h1 .honors {
    font-size: 18px;
    padding-top: 20px;
  }
  header .nav-wrapper {
    width: 350px;
  }
  header ul li {
    font-size: 10px;
  }

  .subheader .subheader-text {
    flex-direction: row-reverse;
    text-align: right;
  }

  .subheader-row {
    justify-content: right;
  }

  .subheader h2 {
    margin-top: 22px;
    font-size: 20px;
  }
  .subheader .notice {
    font-size: 12px;
  }
  header .main-content {
    margin: 0;
  }
  .main-content.main {
    padding: 10px;
    width: 90%;
    flex-direction: column-reverse;
  }
  .sidebar-column {
    display: flex;
    flex-direction: row;
  }
}
