﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #200e00;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

#wrapper {
  max-width: 564px;
  margin: 16px auto;
  border: 2px solid #000;
  padding: 16px 26px 10px;
  background-color: #fff;
  overflow: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  flex-direction: row-reverse;
}

header div {
  flex: 1 1 0;
}

footer {
  padding: 4px 0 0;
}

p:not(:last-of-type) {
  margin: 0 0 4px;
}

h1 {
  margin: 10px 0;
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}

h1 span {
  font-size: 16px;
  line-height: 20px;
}

h1 small {
  display: block;
  font-size: 17px;
  line-height: 21px;
}

h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

a {
  color: #200e00;
  text-decoration: none;
}

ul {
  margin: 0 0 12px 20px;
  list-style: none;
  font-size: 15px;
  line-height: 20px;
}

ul li {
  padding-left: 20px;
}

li:before {
  content: '\2022';
  float: left;
  font-size: 28px;
  text-indent: -20px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media all and (max-width: 564px) {
  #wrapper {
    padding: 16px;
    margin: 0;
    border: none;
    hyphens: auto;
  }

  ul {
    margin-left: 0;
  }

  footer br {
    display: inline;
  }

  br {
    display: none;
  }
}

@media all and (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: center;
  }
}