@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700i,900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  color: #71B61B;
  font-size: 16px;
  background-color: #fff;
}

html a:link,
html a:active,
html a:visited, body a:link,
body a:active,
body a:visited {
  color: #71B61B;
  text-decoration: underline;
}

html a:hover, body a:hover {
  color: #55851c;
  text-decoration: none;
}

html .wrapper, body .wrapper {
  height: 95vh;
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

html .wrapper .box, body .wrapper .box {
  width: 100%;
  max-width: 500px;
  background-color: #fff;
}

html .wrapper .box img, body .wrapper .box img {
  width: 100%;
  height: auto;
}

html .wrapper .box p, body .wrapper .box p {
  padding: 0.7rem;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}

html .wrapper .box p span.larger, body .wrapper .box p span.larger {
  font-weight: 900;
  font-size: 1.2rem;
}

.copyright {
  padding: 15px;
}

.copyright p {
  font-size: 0.8rem;
  color: #ccc;
  background-color: #fff;
}

.copyright p a:link,
.copyright p a:active,
.copyright p a:visited {
  color: #999;
  text-decoration: underline;
}

.copyright p a:hover {
  color: #999;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */