@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700,800&display=swap");
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
}

a {
  text-decoration: none;
}

.container {
  background: #101820;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container__title {
  font-weight: 700;
  font-size: calc(5em + 0.5vw);
  color: #006b38;
}

.container__body {
  margin-top: 48px;
  margin-bottom: 48px;
  font-weight: 700;
  font-size: calc(3em + 0.5vw);
  color: #006b38;
}

.container__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 400px;
  height: 100px;
  background: transparent;
  border: 5px solid #006b38;
  border-radius: 50px;
  font-weight: 700;
  color: #006b38;
  font-size: calc(1em + 0.5vw);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.container__button:hover {
  border: 0px;
  background: #006b38;
  color: #101820;
}
/*# sourceMappingURL=style.css.map */
