html {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/194946/white_texture.jpg");
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
body {
  width: 100%;
  height: 100%;
  font-family: "Open sans condensed", sans-serif;
  font-size: 10px;
  text-align: justify;
  font-weight: 200;
  line-height: 1.5;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (min-width: 320px) {
  body {
    font-size: calc(10px + 6 * ((100vw - 320px) / 960));
  }
}
em {
  font-style: italic;
}
sup {
  vertical-align: super;
  font-size: 0.7em;
}
a {
  text-decoration: none;
}
.child {
  position: relative;
  width: 70%;
  left: 50%;
  padding-top: 1em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: justify;
  z-index: 100;
  font-weight: bold;
}
.child span {
  font-size: 0.8em;
  font-weight: 100;
  text-align: center;
}
.note {
  position: fixed;
  top: 97vh;
  z-index: 100;
  padding-top:0;
  right: 1em;
  font-size: 0.7em;
  text-align: center;
  line-height: 1.1;
}
img {
  display: block;
  position: relative;
  padding-top: 1em;
  width: 70%;
  max-width: 700px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  img {
    width: 60%;
  }
}
@media screen and (min-width: 600px) {
  img {
    width: 70%;
  }
}
@media screen and (max-width: 320px) {
  img {
    width: 90%;
  }
  .child {
    font-size: 0.7em;
  }
}
