html, body, div, h1, blockquote, a, strong, p, button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body, button {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  background: #eee;
  font-size: 19px;
  line-height: 28px;
}

h1 {
  font-weight: 800;
  font-size: 300%;
  line-height: 100%;
  margin-bottom: 30px;
}

p {
  margin-bottom: 30px;
}

.page {
  max-width: 1350px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 50px auto 0px auto;
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 10px 32px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 10px 32px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 10px 32px 0px rgba(0,0,0,0.15);
}

.text {
  margin-bottom: 60px;
}

.result {
  display: block;
  width: 80%;
  margin: 30px auto;
  padding: 30px;
  font-size: 180%;
  line-height: 110%;
  font-style: italic;
  text-align: center;
  background: #fafafa;
  border-left: 5px solid #00ce7d;
  -webkit-box-shadow: inset 0px 10px 32px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: inset 0px 10px 32px 0px rgba(0,0,0,0.15);
  box-shadow: inset 0px 10px 32px 0px rgba(0,0,0,0.15);
}

.button {
  text-align: center;
}

button {
  min-height: 60px;
}

#trigger {
  transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  background: #00ce7d;
  border-radius: 8px;
  border: none;
  color: #fff;
  padding: 15px 32px;
  display: inline-block;
  -webkit-box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.15);
}

#trigger:hover {
  background-color: #32d797;
  transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
}

#trigger:active {
  background: #00ce7d;
  border: none;
  -webkit-box-shadow: inset 0px 10px 32px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: inset 0px 10px 32px 0px rgba(0,0,0,0.3);
  box-shadow: inset 0px 10px 32px 0px rgba(0,0,0,0.3);
}

.links {
  margin: 20px auto;
  text-align: center;
}

.links a {
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
  color: #00673e;
  font-weight: 800;
  text-decoration: none;
}

.links a:hover {
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
  color: #00ce7d;
}

.werbung {
  margin: 60px auto;
  padding: 0px 20px;
  text-align: center;
  max-width: 970px;
}

.credits {
  color: #aaaaaa;
  text-align: center;
  font-size: 75%;
}

@media screen and (max-width:1350px) {
  .page {
    margin: auto;
  }
}

@media screen and (max-width:850px) {
  h1 {
    font-size: 200%;
  }

  .result {
    font-size: 150%;
  }
}

@media screen and (max-width:500px) {
  body, button {
    font-size: 16px;
    line-height: 24px;
  }

  .result {
    font-size: 120%;
  }
}

