﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #200e00;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

#wrapper {
  max-width: 630px;
  margin: 16px auto;
  border: 1px solid #000;
  background: #fff url(background.jpg) no-repeat;
  overflow: hidden;
}

.background {
  padding: 20px 20px 10px;
  clip-path: polygon(32% 0%, 100% 0, 100% 100%, 0% 100%);
  background: rgba(255, 255, 255, 0.75);
  width: 388px;
  margin: 0 0 0 auto;
}

header {
  padding: 0 0 38px;
  display: flex;
  justify-content: flex-end;
}

.font {
  font-size: 15px;
}

.qrcode {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin: 24px 0;
}

.qrcode p {
  line-height: 1.6;
}

footer p {
  text-align: center;
}

p {
  text-align: right;
}

h1 {
  margin: 10px 0;
  font-size: 23px;
  line-height: 27px;
  font-weight: 700;
  text-align: right;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

h1 span {
  display: block;
  padding: 2px 6px;
  background: #034d82;
}

h2 {
  margin: 24px 0 24px 72px;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
}

h3 {
  margin: 16px 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

a {
  color: #200e00;
  text-decoration: none;
}

ul {
  margin: 0 0 10px;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: '\2022';
  color: #200e00;
  float: left;
  font-size: 25px;
  text-indent: -20px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media all and (max-width: 628px) {
  #wrapper {
    margin: 0;
    border: none;
    hyphens: auto;
  }

  .background {
    padding: 16px;
  }
}

@media all and (max-width: 480px) {
  #wrapper {
    padding: 195px 0 0 16px;
  }

  .background {
    width: auto;
    clip-path: none;
  }

  .qrcode {
    gap: 16px;
  }

  h2 {
    margin: 16px 0;
  }
}

@media all and (max-width: 374px) {
  #wrapper {
    padding: 195px 0 0;
  }

  .qrcode {
    gap: 0;
  }
}