﻿* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  min-height: 100%;
}

#wrapper {
  max-width: 750px;
  margin: 12px auto;
  border: 1px solid #000;
  background: #7bb127 url('./background.png') no-repeat 0 0;
  position: relative;
  overflow: hidden;
  color: #200e00;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
}

header {
  position: absolute;
  z-index: 3;
  right: 61px;
  top: 8px;
}

article {
  padding: 15px 20px 30px 30px;
  color: #fff;
}

footer {
  display: none;
}

h1 {
  margin: 0 0 19px;
  font-size: 25px;
  line-height: 29px;
  font-weight: 700;
}

h2 {
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 22px;
  font-weight: 700;
}

h3 {
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
}

a {
  color: #200e00;
  text-decoration: none;
}

ul {
  padding: 0 0 0 10px;
  list-style: none;
}

ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 7px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.box {
  margin-top: -45px;
  display: flex;
  justify-content: flex-start;
  padding-left: 147px;
  align-items: flex-end;
  gap: 0 16px;
}

.qrcode {
  position: relative;
  top: 12px;
}

@media all and (max-width: 749px) {
  #wrapper {
    margin: 0;
    border: none;
    background: #7bb127;
  }

  header {
    background: #fff;
    position: static;
    text-align: center;
    padding: 10px 15px;
  }

  article {
    padding: 10px 15px;
  }

  footer {
    padding: 0;
  }

  .box {
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .qrcode {
    top: 0;
  }

  footer {
    padding: 0 15px 15px;
    display: block;
    text-align: center;
  }
}