:root {
  --naviblue: #001b2e;
  --text-color: #001b2e;
  --accent: #ab001f; /** Accent Color **/
  --page-w: 1280px; /** MAX Page Width **/
  --white: #fff;
}

/** CSS RESET **/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/** END: CSS RESET **/
body {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  color: var(--text-color);
  padding: 30px;
}
a {
    text-decoration: none;
}


.container {
  max-width: var(--page-w, 1280px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 16px 37px 0px #00000014;
  padding: 20px;
  margin-bottom: 40px;
}
/** HEADER **/
header {
    margin-bottom: 40px;
}
.brand {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.brand .mark img {
  max-width: 100px;
}

@media screen and (min-width: 768px) {
  .brand .mark img {
    max-width: 150px;
  }
}

.brand .posttext,
.brand .pretext {
    padding-bottom:15px;
    font-weight: 500;
    border-bottom: 2px solid var(--naviblue);
    display: flex;
    align-items: baseline;
}
.brand p {
    margin-top: auto;
    font-weight: 500;
}

/** HEADLINE **/
.headline {
    margin-bottom: 40px;
}
h1 {
  font-weight: 700;
  font-style: Italic;
  font-size: 44px;
  line-height: 140%;
  letter-spacing: 4%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
h1 > span {
  background: var(--accent);
  color: var(--white);
  display: inline-block;
  padding-left: 7px;
  padding-right: 7px;
}

/** CONTENT **/
.content p {
  font-family: Jost;
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 20px;
}

.content p strong {
    font-weight: 500;
}

i {
    font-style: italic;
}

/** FOOTER **/
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer strong {
    color: var(--accent);
}
strong {
    font-weight: 500;
}

@media screen and (max-width: 980px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1 {
    font-size: 28px;
  }
  p {
    font-size: 12px;
  }
}
