@charset "utf-8";

:root {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  color: #333333;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 50rem;
  margin: 1rem auto;
  border: solid 0.0625rem #000;
  background: #fff;
  overflow: hidden;
  padding: 3.437rem 4.187rem;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

span {
  white-space: nowrap;
}

p {
  padding: 0 0 1.25rem;
}

.center,
footer p {
  text-align: center;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
}

h1 span {
  font-weight: normal;
}

h2 {
  font-size: 1rem;
}

ul {
  padding: 0 0 1.25rem;
  list-style: none;
}

ul li {
  padding-left: 3.6rem;
}

ul li:before {
  content: "\2022";
  float: left;
  margin-left: -1.812rem;
  font-size: 1.375rem;
  line-height: .9;
}

header {
  padding: 0 0 0.75rem;
  display: flex;
  justify-content: space-between;
}

.links {
  margin-right: 1.25rem;
}

header:before {
  content: "";
  position: absolute;
  top: 5.687rem;
  left: 14.375rem;
  width: 40%;
  height: 0.125rem;
  background: #317ab3;
}

.justify {
  text-align: justify;
}

@media only screen and (max-width: 49.938rem) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }

  p,
  ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    padding: 0 0 1rem;
  }

  footer p {
    padding: 0;
  }

  .justify {
    text-align: left;
  }

  header {
    padding: 0.625rem 0;
  }

  header:before {
    display: none;
  }
}

@media only screen and (max-width: 32rem) {
  header {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.625rem;
    padding: 0 0 1rem;
  }

  h1 br {
    display: none;
  }

  ul li {
    padding-left: 1.25rem;
  }

  ul li:before {
    margin-left: -1.25rem;
  }

  .links {
    margin: 0;
  }

  footer {
    font-size: .938rem;
  }
}