:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot');
  src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
    url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
    url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
    url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot');
  src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
    url('../fonts/roboto-v30-latin-700.woff') format('woff'),
    url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
    url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 25px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 500px;
  margin: 16px auto;
  border: 1px solid #000;
  overflow: hidden;
  background-color: #fff;
  background: #fff url('../images/background.jpg') no-repeat 0 0;
}

h1 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

h1 strong {
  color: #1FA245;
  padding: 4px 10px;
  background-color: #fff;
  color: #1FA245;
  margin-bottom: 4px;
}

h1 span {
  display: inline-block;
  padding: 4px 10px;
  background-color: #1FA245;
  color: #fff;
}

h2 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  margin-right: 16px;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px 0 0 20px;
  gap: 12px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #1FA245;
  color: #fff;
  gap: 12px;
  padding: 6px 16px 16px;
}

.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.qrcode div {
  padding-bottom: 3px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0 0 16px;
  list-style: none;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

@media all and (max-width:500px) {
  #wrapper {
    margin: 0;
    border: none;
    background-size: 100%;
    background-color: #1FA245;
  }

  h1 {
    width: 100%;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width:450px) {
  footer {
    justify-content: center;
  }
}

@media all and (max-width:350px) {
  footer {
    text-align: center;
  }

  .logo {
    justify-content: center;
  }
}