@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Office:ital,wght@0,1..1000;1,1..1000&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #fff;
  font: 1em/1.3em "Ysabeau Office", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 930px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #650817 url('bg.jpg') top left no-repeat;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 2rem 0 2rem 7rem;
  font-size: 1.692em;
  line-height: 1.1em;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 2.5em;
  line-height: 1.3em;
  margin: 2rem 3rem 0.5rem;
  font-weight: 800;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
h1:before {
  content: "-";
  float: left;
  margin: -1px 0 0 -0.875rem;
}
article {
  padding: 1rem;
}
section {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
section img {
  display: block;
  margin: 0 auto 0.125rem;
}
section p {
  padding-bottom: 0.5rem;
  text-align: center;
  line-height: 1.1;
}
.qrc {
  display: flex;
  align-items: center;
  font-size: 1.125em;
  line-height: 1.1;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.bg {
  font-weight: 300;
  padding: 0.5rem 1rem 0.5rem 6rem;
  background: url('bgp.jpg') top left no-repeat;
}
figure {
  margin: 2rem 14.5rem;
}
footer {
  position: absolute;
  bottom: 1.625rem;
  right: 1rem;
}
@media only screen and (max-width:929px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
    background-image: none;
  }
  :is(span, a) {
    display: inline-block;
  }
  h1 {
    margin: 2rem 1rem;
  }
  h2 {
    margin: 0 0 2rem;
  }
  br {
    display: none;
  }
  article {
    padding: 0;
  }
  figure {
    margin: 1rem;
    display: flex;
    justify-content: center;
  }
  section {
    position: static;
  }
  section strong {
    display: block;
  }
  .qrc {
    flex-direction: column;
    margin: 1rem 0;
    gap: 1rem;
  }
  .bg {
    text-decoration: underline;
    background-image: none;
    padding: 0.75rem 0;
    text-align: center;
  }
  footer {
    position: static;
    display: flex;
    justify-content: center;
    margin: 1rem 0 0;
  }
}