@charset "utf-8";
:root {
  font-size: 20px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1em/1.3 "Segoe UI", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 412px;
  margin: 1rem auto;
  border: solid 2px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem 1rem 0.5rem;
}
p {
  padding-bottom: 0.3rem;
}
h1 {
  margin: 0 0 0.5rem;
  font-size: 1em;
  line-height: 1.3em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 0.7rem;
  list-style: none;
}
li {
  padding-left: 0.8rem;
}
ul li:before {
  content: "•";
  font-size: 1.3em;
  float: left;
  margin: -3px 0 0 -0.8rem;
}
article p:last-of-type {
  text-align: center;
  padding-top: 0.3rem;
}
article p:last-of-type a:first-of-type {
  font-size: 1.6em;
  text-decoration: underline !important;
}
footer {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:411px) {
  body {
    font-size: 0.875em;
  }
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
    hyphens: auto;
  }
  .hide_m {
    display: none;
  }
  footer {
    display: block;
  }
  footer p {
    text-align: center;
  }
}