@charset "UTF-8";
body {
  color: rgb(0, 0, 0);
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class~="img-responsive"] {
  display: block;
  height: auto;
  max-width: 100%;
}
[class~="page-wrapper"] {
  display: grid;
  grid-row-gap: 1em;
  grid-template-areas: "branding" "copyright";
  justify-items: center;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 1em;
}

[class~="branding"] {
  grid-area: branding;
  max-width: 900pt;
  position: relative;
}

[class~="footer"] {
  grid-area: copyright;
  color: #969696;
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
}

/* MEDIA QUERIES
*********************************************************/
@media (min-width: 320px) and (max-width: 480px) {
  [class~="page-wrapper"] {
    margin-top: 2em;
  }
  [class~="footer"] {
    font-size: 0.5rem;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  [class~="page-wrapper"] {
    margin-top: 5em;
  }
}
@media (min-width: 768px) {
  .page-wrapper {
    margin-top: 10em;
  }
}
