* {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}

html {
  font-size: 16px;
  overflow: scroll;
  width: 100%;
  height: 100%;
}

a, html, body, div, span,
h1, h2, h3, h4, h5, h6, p {
  text-decoration: none;
  color: #171628;
  font-family: arial;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h5 {
  font-size: .83em;
}

h6 {
  font-size: .75em;
}

p {
  padding: 0px;
  margin: 0px;
  font-size: 1em;
  text-align: justify;
}

body {
  margin: 0;
  background-color: white;
  padding: 0;
  font-size: 0.625em/1em;
  width: 100%;
  height: 100%;
}

@viewport {
  zoom: 1.0;
  width: device-width;
}
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 10px;
}

.container > * {
  float: left;
  width: 100%;
  text-align: center;
}

.container > .frame {
  width: calc(50% - 10px);
  background-color: blue;
  margin: 5px;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.frame > img {
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
  width: 340px;
}

.banner {
  width: calc(50% - 10px);
  background-color: #E69225;
  margin: 5px;
  height: 200px;
}

.banner h1 {
  color: white;
  font-size: 34px;
  text-align: center;
}

.banner p {
  color: white;
  font-size: 24px;
  text-align: center;
}

.banner *{
  color: white;
  text-align: center;
}

.banner > a {
  color: white;
  font-size: 24px;
  text-align: center;
}

main {
  width: 100%;
  padding: 3% 10%;
}

div p {
  font-size: 22px;
}

div h2 {
  font-size: 26px;
  font-weight: normal;
}

div li {
  font-size: 21px;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

footer > * {
  float: left;
}

footer p {
  width: 100%;
  padding-top: 10px;
}

footer img {
  float: none;
  margin: 0 auto;
}

ul {
  list-style-position: inside;
  padding: 0;
}

@media screen and (max-width: 530px) {
  .container > img {
    width: 100%;
  }

  .banner {
    width: 100%;
  }
}