:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.eot');
  src: url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
    url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
    url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
    url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.eot');
  src: url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/poppins-v20-latin-700.woff2') format('woff2'),
    url('../fonts/poppins-v20-latin-700.woff') format('woff'),
    url('../fonts/poppins-v20-latin-700.ttf') format('truetype'),
    url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Poppins', Arial, sans-serif;
  color: #231f20;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 672px;
  margin: 16px auto;
  border: 1px solid #777;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

h1 strong {
  font-size: 38px;
}

h1+p {
  text-align: justify;
}

h2 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  padding: 16px 0 0 16px;
}

article {
  padding: 9px 16px;
}

footer {
  padding: 0 16px 16px;
}

footer p {
  text-align: center;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0 0 6px;
  list-style: none;
}

ul li {
  padding-left: 12px;
}

ul li:before {
  content: "\25A0";
  color: #6486C3;
  float: left;
  margin-top: -1px;
  font-size: 15px;
  line-height: 1em;
  text-indent: -12px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

span {
  white-space: nowrap;
}

@media all and (max-width:672px) {
  #wrapper {
    margin: 0;
  }

  h1+p {
    text-align: left;
  }

  h1 strong {
    font-size: 26px;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}