@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #fff;
  font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 635px;
  margin: 1rem auto;
  border: solid 1px #2E2113;
  background: #fff;
  overflow: hidden;
}
p {
  padding-bottom: 0.625rem;
}
:is(a:link,a:hover,a:visited,a:active) {
  color: #787370;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
h1 {
  margin: 0 0 1rem;
  font-size: 1.37em;
  line-height: 1.3;
  flex: 1;
}
h1 span {
  text-transform: none;
  font-weight: normal;
}
h2 {
    font-size: 1.15em;
    line-height: 1.3em;
    margin-bottom: 0;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header img {
  display: block;
}
.logo {
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
}
article {
  padding: 1.5rem 1rem 1rem 1.5rem;
  background: #00579D;
}
article p span, h1 {
  text-transform: uppercase;
}
footer {
  display: flex;
  justify-content: space-between;
}
footer p {
  color: #787370;
}
footer img {
  display: block;
}
footer section {
  padding: 1rem;
  width: 388px;
}
footer section p:last-of-type {
  padding-bottom: 0;
}
footer p {
  padding-bottom: 0.3rem;
}
@media only screen and (max-width:634px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  .logo {
    justify-content: center;
  }
  footer section {
    width: auto;
  }
  article br {
    display: none;
  }
  footer {
    padding: 1rem 1rem 1rem 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  footer section {
    padding: 1rem 0 0;
  }
  footer p {
    text-align: center;
  }
  h1 {
    margin-top: 0;
  }
}
@media only screen and (max-width:480px) {
  article, footer {
    padding-left: 1rem;
  }
}