      html,
      body,
      div,
      span,
      object,
      iframe,
      h1,
      h2,
      h3,
      h4,
      h5,
      h6,
      p,
      blockquote,
      pre,
      a,
      abbr,
      address,
      code,
      img,
      q,
      dl,
      dt,
      dd,
      ol,
      ul,
      li,
      fieldset,
      form,
      label,
      legend,
      table,
      caption,
      tbody,
      tfoot,
      thead,
      tr,
      th,
      td {
        margin: 0;
        padding: 0;
        list-style-type: none;
        text-align: left;
        text-decoration: none;
        border-bottom: none;
        font-weight: normal;
        font-style: normal;
        border: none;
        color: #111;
      }

      body {
        margin: 0 auto;
        padding: 0;
        background-color: #f5f5d5;
        font-family: Georgia, serif;
        letter-spacing: -0.01em;
        word-spacing: 0.2em;
        line-height: 1.8em;
        font-size: 62.5%;
        color: #111;
        width: 98%;
      }
      #header {
        border-bottom: 1px solid #d3d3d3;
        margin: 1em;
        float: left;
        height: 5em;
        width: 100%;
      }
      #header h1 {
        margin-top: 0.9em;
        font-size: 1.8em;
        color: #567;
      }
      .box {
        --columns: 4;
        --margins: calc(24px / var(--columns));
        --space: calc(4px * var(--columns));
        --fontSize: calc(20px - 4 / var(--columns));
      }
      .box {
        width: 98%;
        min-width: 320px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .cell {
        min-width: 100px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2),
          0 1px 5px 0 rgba(0, 0, 0, 0.12);
        background-color: #f0f3f9;
        margin-bottom: 2em;
      }
      .cell-header {
        background: currentColor;
      }
      .cell-title {
        color: #fff;
        padding: var(--space);
        font-size: var(--fontSize);
      }
      .cell-content {
        min-height: 80px;
        text-indent: 2em;
        font-size: var(--fontSize);
        overflow-y: auto;
        padding: 5px;
      }
      #footer {
        clear: both;
        background: #b7cbe8;
        border-top: 3px solid #a7bfe8;
        zoom: 1;
      }
      #footer p {
        margin: 0;
        padding: 15px 0 46px;
        height: 54px;
        text-align: center;
        line-height: 1.5;
        font-size: 12px;
        text-shadow: 1px 1px hsla(0, 0%, 100%, 0.25);
      }

      @media all and (min-width: 1200px) {
        .cell {
          width: 400px;
        }
      }
