﻿* {
  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: 558px;
  margin: 16px auto;
  border: 2px solid #000;
  padding: 16px 16px 10px;
  background-color: #fff;
  overflow: hidden;
}

footer {
  padding-right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

footer p {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0 0 8px;
}

h1 {
  margin: 8px 0;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
}

h1 span {
  font-size: 28px;
  line-height: 32px;
}

h2 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
}

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: 558px) {
  #wrapper {
    margin: 0;
    border: none;
    hyphens: auto;
  }

  footer {
    padding-right: 0;
  }

  :is(span, a) {
    white-space: nowrap;
  }

  br:not(footer br) {
    display: none;
  }
}