:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 620px;
  margin: 16px auto;
  border: 1px solid #000;
  overflow: hidden;
  background-color: #fff;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 16px 0;
  font-size: 36px;
  line-height: 1.125;
  font-weight: 700;
  color: #76C266;
}

h2 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #76C266;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 16px;
}


p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  margin: 0;
  padding: 0;
}

article {
  padding: 16px 16px 6px 36px;
}

footer {
  padding: 9px;
  background-color: #76C266;
  color: #fff;
  position: absolute;
  bottom: 26px;
  right: 16px;
  width: 230px;
  font-size: 14px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}



ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 12px;
}

ul li:before {
  content: "\2022";
  color: #76C266;
  float: left;
  margin-top: 1px;
  font-size: 16px;
  line-height: 1em;
  text-indent: -12px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

figure {
  position: absolute;
  top: 220px;
  left: -3px;
}

span {
  white-space: nowrap;
}

@media all and (max-width:620px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  header {
    position: relative;
  }

  h1 {
    font-size: 28px;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }

  figure {
    position: absolute;
    bottom: -26px;
    left: -3px;
    top: auto;
  }

  article {
    padding: 16px 16px 2px;
  }

  footer {
    padding: 16px;
    position: static;
    width: 100%;
  }

  footer a br {
    display: none;
  }
}