@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 650px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #1D386D;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 0.5rem;
}
h1 {
  margin: 0;
  font-size: 2em;
  line-height: 1.3;
  color: #fff;
  position: absolute;
  top: 11rem;
  left: 2rem;
}
h1 span {
  font-size: 1rem;
  text-transform: none;
}
h1 small {
  display: block;
  font-size: 0.52em;
  line-height: 1.3;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin: 0 -1rem 0.5rem;
  padding: 0.125rem 1rem 0;
  background: #E0E0E0;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 0.5rem;
  list-style: none;
}
li {
  padding-left: 0.75rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -0.75rem;
}
.qrc {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
article {
  padding: 0 1rem;
}
article p span {
  position: relative;
  z-index: 2;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
}
@media only screen and (max-width:649px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  h1 {
    position: static;
    color: #000;
    font-size: 1.75em;
    margin-bottom: 1rem;
  }
  h1 small {
    font-size: 0.7em;
  }
  .qrc {
    top: 1rem;
    right: 1rem;
  }
  footer {
    align-items: center;
    position: static;
    gap: 0.5rem;
    padding: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .qrc {
    position: static;
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
}