* {
  font-weight: bold;
}

ul {
  list-style: none;
}

:root {
  --color-theme: #1E50A3;
  --color-alert: #C03131;
  --color-theme-inverse: #FAF9F3;
  --color-theme-alt: #FCEFAB;
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
  background: var(--color-theme-inverse);
  font-family: var(--text-font);
  color: var(--color-theme);

}

.width {
  position: relative;
  max-width: 800px;
  margin: auto auto;
}

header {
  height: 136px;
  margin-bottom: 0px;
  position: relative;
  overflow: hidden;
  /* background: var(--color-alert); */
}

#skip-to-main {
  color: var(--color-theme-inverse);
  background: var(--color-theme);
}

#content {
  text-align: center;
}

h1 {
  text-transform: uppercase;
}

h2 {
  color: var(--color-alert);
  text-transform: uppercase;
}

h2 span {
  white-space: nowrap;
}

a {
  color: var(--color-theme);
  text-decoration: underline;
}

#content .width {
  margin-top: 70px;
  margin-bottom: 70px;
  /* min-height: 500px; */
  padding: 0 20px;
}

.big-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  /* height: 500px; */
  position: relative;
  height: 45vh;
}

.big-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.textblock {
  max-width: 650px;
  margin: auto auto;
  margin-top: 60px;
  text-align: left;
  line-height: 150%;
}

.textblock p {
  margin-bottom: 20px;
  padding: 0 30px;
  font-weight: normal;
}

.textblock hr {
  border: none;
  border-bottom: 1px solid var(--color-theme);
  width: 50%;
  margin: auto auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.textblock figure {
  margin: 40px 0;
}

.textblock figure a {
  display: block;
  margin: 0 auto;
}

.textblock figure img {
  width: 100%;
}

.textblock figcaption {
  display: none;
}

footer {
  background: var(--color-theme);
  color: var(--color-theme-inverse);
  font-weight: bold;
  flex: 1;
}

footer .width {
  position: relative;
  padding: 20px;
}

footer .positioner {
  position: relative;
}

footer .line {
  display: inline-block;
}

footer .links {
  margin-top: 40px;
  margin-bottom: 40px;
}

footer a {
  color: var(--color-theme-inverse);
}

#hours-footer {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: right;
}

#design {
  position: absolute;
  bottom: 0px;
  right: 0px;
  text-align: right;
}

@media (max-width: 650px) {
  .positioner>div {
    text-align: center;
  }

  #hours-footer,
  #design {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    text-align: center;
  }

  #hours-footer {
    margin-top: 20px;
  }

  #design {
    margin-top: 20px;
  }
}
.feature-links {
  margin-top: 30px;
  padding: 0;
}

.feature-links li {
  display: inline-block;
  margin: 0 12px;
  text-transform: uppercase;
}

.textblock h3 {
  color: var(--color-alert);
  text-transform: uppercase;
  padding: 0 30px;
  margin-top: 40px;
  margin-bottom: 10px;
}
