@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 540px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
}
p {
  padding-bottom: 0.8rem;
}
h1 {
  margin: -7.75rem 0 1.5rem;
  font-size: 1.9em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1em;
  text-align: center;
}
h1 span {
  font-size: 0.765em;
  line-height: 1.3;
  font-weight: 400;
}
h2 {
  font-size: 1.22em;
  line-height: 1.3em;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  color: #A72F28;
  background: url('../images/line.jpg') bottom 6px left no-repeat;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "•";
  font-size: 1.25em;
  float: left;
  margin: 2px 0 0 -1.3rem;
}
.logo {
  padding: 0.4rem 1rem;
  display: flex;
  justify-content: center;
}
article {
  padding: 0.6rem 1.2rem 0;
}
footer {
  padding: 0.8rem 1rem 0;
  background: #A72F28;
}
footer p {
  text-align: center;
  color: #fff;
  font-size: 0.95em;
  line-height: 1.3;
}
footer p strong {
  font-size: 1.125em;
}
@media only screen and (max-width:539px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  span {
    display: inline-block;
  }
  br {
    display: none;
  }
  h1 {
    font-size: 1.5em;
  }
  article {
    padding: 0.6rem 1rem 0;
  }
  h1 {
    margin: 0 0 1rem;
    color: #A72F28;
  }
}