@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #1665B2;
  font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 930px;
  margin: 1rem auto;
  border: solid 8px #1A3764;
  background-color: #fff;
  overflow: hidden;
}
p {
  padding-bottom: 0.8rem;
}
h1 {
  font-size: 1.5em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
: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;
}
header {
  position: relative;
}
header p {
  text-align: right;
  font-weight: 700;
  position: absolute;
  top: 4%;
  right: 3%;
  color: #fff;
  font-size: 1.25em;
  line-height: 1.3;
}
article {
  padding: 1rem 1.5rem 0;
}
.right {
  margin-left: auto;
  width: 405px;
  position: relative;
}
.qr {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 2rem 2rem;
}
@media only screen and (max-width: 929px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 760px) {
  article {
    margin-top: 0.5rem;
  }
  .right {
    width: 100%;
  }
  .qr {
    position: static;
    display: flex;
    justify-content: center;
    padding: 0.25rem 0 1.25rem;
  }
  footer {
    padding: 0 1rem 1rem;
    justify-content: center;
  }
}
@media only screen and (max-width:600px) {
  header p {
    font-size: 0.938em;
    line-height: 1.3;
  }
  h1 {
    font-size: 1.3em;
  }
}
@media only screen and (max-width:480px) {
  article {
    padding: 0 1rem;
  }
}