:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
    url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot');
  src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'),
    url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.25;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 420px;
  margin: 16px auto;
  border: 4px solid #707070;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  font-size: 18px;
  line-height: 1.125;
  font-weight: 700;
}

h1 strong {
  font-size: 30px;
}

h1+p {
  font-size: 18px;
  line-height: 1.25;
}

h2 {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

h3 {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

p:not(:last-of-type) {
  margin-bottom: 9px;
}

header {
  position: relative;
}

article {
  padding: 12px 16px;
}

footer {
  padding: 0 16px 16px;
}

.qrcode {
  position: absolute;
  bottom: 59px;
  right: 16px;
}

h2+p {
  padding-right: 80px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.intro {
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: #fff;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, .8);
}

.title {
  text-align: center;
}

.title p {
  margin-bottom: 2px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: underline;
  white-space: nowrap;
}

span {
  white-space: nowrap;
}

@media all and (max-width:420px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }

  .qrcode {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  h2+p {
    padding-right: 0;
  }

  .intro {
    position: static;
    color: #000;
    text-shadow: none;
    padding: 12px 16px 0;
  }
}