:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-v28-latin-regular.eot');
  src: url('../fonts/noto-sans-v28-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v28-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v28-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v28-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v28-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-v28-latin-700.eot');
  src: url('../fonts/noto-sans-v28-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v28-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v28-latin-700.woff') format('woff'), url('../fonts/noto-sans-v28-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v28-latin-700.svg#NotoSans') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Noto Sans', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 560px;
  margin: 16px auto;
  border: 2px solid #F3A643;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 0 0 12px 0;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  margin: 12px 16px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 400;
}

p:not(:last-of-type) {
  margin-bottom: 6px;
}

header {
  padding: 16px;
}

.title {
  margin: 0 16px 12px;
}

.title p {
  padding-left: 110px;
  position: relative;
  font-size: 16px;
}

.title p strong {
  position: absolute;
  top: 0;
  left: 0;
  color: #F3A643;
  display: block;
}

.banner {
  position: relative;
}

.banner strong {
  font-size: 11px;
  line-height: 1.3;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 16px;
  left: 16px;
}

article {
  margin: 0;
  padding: 0;
}

footer {
  padding: 9px 16px;
  background-color: #F3A643;
}

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: #000;
  float: left;
  margin-top: -3px;
  font-size: 20px;
  line-height: 1em;
  text-indent: -12px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

@media all and (max-width:560px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}