﻿@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%;
  vertical-align: bottom;
}

#wrapper {
  position: relative;
  max-width: 630px;
  margin: 12px auto;
  border: 1px solid #777;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  background: #fff url('background.jpg') no-repeat bottom left;
}

header {
  position: relative;
}

header .logo {
  position: absolute;
  bottom: -30px;
  left: 16px;
}

article {
  padding: 8px 16px 16px;
  position: relative;
}

article .fix {
  position: absolute;
  top: 31px;
  left: 16px;
}

footer {
  padding: 16px 16px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer a {
  letter-spacing: 0.025rem;
  color: #fff;
}

p {
  margin: 0 0 0;
  padding: 0;
}

.icon strong,
h1 strong {
  color: #F4E12B;
}

h1 {
  margin: 16px 0 16px 0;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

h2 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.125;
  text-align: right;
  letter-spacing: 2px;
}

h2 strong {
  color: #F6E231;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: "\25A0";
  color: #F4E12B;
  float: left;
  margin-top: 7px;
  font-size: 12px;
  text-indent: -20px;
  line-height: 1.3;
}

.icon {
  font-size: 27px;
  line-height: 1.3;
}

.qrcode {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.po p {
  position: absolute;
  bottom: 25px;
  right: 185px;
}

.paragraph {
  margin-bottom: 24px;
  font-size: 21px;
  line-height: 1.25;
}

.icon li {
  padding-left: 20px;
  background: url('icon.jpg') no-repeat 0 11px;
}

.icon li:before {
  display: none;
}

.bold {
  font-weight: 700;
  color: #F4E12B;
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 18px;
}

@media all and (max-width:750px) {
  #wrapper {
    border: none;
    margin: 0;
    background-size: 100% 100%;
  }

  article {
    padding: 60px 16px 16px;
    position: relative;
  }

  .po p {
    position: static;
    margin-bottom: 16px;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }
}