.green-background {
  background: #fff; /* Old browsers */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

.inner-body {
  height: 100vh;
  width: 100%;
  background: #fff;
}

.content {
  width: 87.5%;
  max-width: 675px;
  margin: 0 auto;
  display: block;
  color: #3F3F3F;
}

.logo {
  padding-top: 3.5rem;
  margin-bottom: 2rem;
}

.logo img {
  max-width: 240px;
}

.text {
  font-size: 1rem;
  line-height: 1.95;
  padding: 1.75rem 0 0.5rem;
}

.text em {
  font-size: 2.625rem;
  font-weight: 900;
  font-style: normal;
  line-height: 0.3;
  padding-right: 0.25rem;
}

.button-area {
  display: grid;
  margin-bottom: 3rem;
}

.green-button {
  border: none;
  border-radius: 4rem;
  background: #0da045;
  background: -moz-linear-gradient(top, #0da045 0%, #0da045 23%, #017f75 88%, #017f75 100%);
  background: -webkit-linear-gradient(top, #0da045 0%,#0da045 23%,#017f75 88%,#017f75 100%); 
  background: linear-gradient(to bottom, #0da045 0%,#0da045 23%,#017f75 88%,#017f75 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0da045', endColorstr='#017f75',GradientType=0 );
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.8rem 2.25rem;
  margin: 3rem auto 2rem;
  text-align: center;
  outline: none;
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1.0);
}

.green-button:hover {
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(13,60,39, 0.25);
  transform: translateY(-3px);
}