@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v35-latin-regular.eot');
  src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v35-latin-700.eot');
  src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-size: 16px;
}

body {
  color: #000;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
}

#wrapper {
  max-width: 950px;
  margin: 16px auto;
  border: 1px solid #000;
  padding: 100px;
  background-color: #fff;
  position: relative;
}

article {
  padding: 32px 0 10px;
}

p {
  margin: 0 0 16px;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 16px 0 32px;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
}

h1 small {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

h2 {
  margin: 0 0 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

ul {
  margin: 0 0 32px 32px;
  list-style: none;
}

ul li {
  padding-left: 30px;
}

li:before {
  content: '\2022';
  float: left;
  font-size: 25px;
  text-indent: -32px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: #000;
  text-decoration: none;
}

@media all and (max-width: 950px) {
  #wrapper {
    padding: 6%;
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  :is(a, span) {
    white-space: nowrap;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width: 480px) {
  #wrapper {
    padding: 16px;
  }

  header {
    display: flex;
    justify-content: center;
  }

  ul {
    margin-left: 0;
  }
}

@media all and (max-width: 374px) {
  .link {
    white-space: normal !important;
  }
}