﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

img {
  max-width: 100%;
}

#wrapper {
  position: relative;
  max-width: 480px;
  margin: 12px auto;
  border: 2px solid #B2D687;
  padding: 10px;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #200E00;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 9px;
  right: 10px;
  z-index: 999;
}

article {
  margin: 0;
  padding: 0;
  position: relative;
}

article .qrcode {
  position: absolute;
  bottom: 15px;
  right: -2px;
}


footer strong {
  font-size: 14px;
}

p {
  margin: 0 0 9px;
  padding: 0;
}

h1 {
  margin: 9px 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

h1 small {
  font-size: 16px;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

a {
  color: #200E00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media all and (max-width:480px) {
  #wrapper {
    padding: 16px;
    border: none;
  }


  header,
  article .qrcode {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 8px 0;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }
}