@charset "UTF-8";
<style>
  /* Only affects narrow screens */
  @media screen and (max-width: 700px) {
    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      min-width: 0 !important;
    }

    img,
    object,
    embed,
    video {
      max-width: 100%;
      height: auto;
    }

    table {
      max-width: 100%;
    }
  }
</style>