body {
  background-color: #f4f4f9;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: #006400;
}

p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #228B22;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button:hover {background-color: #006400}

.button:active {
  background-color: #006400;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.froge {
  width: 50px;
  height: 50px;
  background: url('/static/images/froge.svg');
  display: block;
  margin: 0 auto;
}