:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: Tahoma, Geneva, sans-serif;
  color: #121C4D;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 880px;
  margin: 16px auto;
  border: 1px solid #121C4D;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  margin: 32px 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 18px;
  text-align: justify;
}

article {
  padding: 50px 50px 24px;
}

footer {
  padding: 0 50px 50px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

ul li:before {
  content: "\1F5F8";
  color: #121C4D;
  float: left;
  margin-top: 1px;
  font-size: 18px;
  line-height: 1em;
  text-indent: -20px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 32px 0;
}

.flex>div {
  width: 45%;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: #00f;
  text-decoration: underline;
  white-space: nowrap;
}

.link {
  color: #000 !important;
  text-decoration: none !important;
}

span {
  white-space: nowrap;
}

@media all and (max-width:880px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  p {
    text-align: left;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width:767px) {
  .flex {
    margin: 0;
  }

  .flex>div {
    width: 100%;
  }

  article {
    padding: 16px 16px 0;
  }

  footer {
    padding: 0 16px 16px;
  }

  h1 {
    font-size: 24px;
    margin: 16px 0;
  }
}