.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: 50%;

}

.information{
  display: block;
  font-size: 30px;
  text-align: center;
  width: 85%;
  height: 60%;
}

.button {
  display: inline-block;
  padding: 15px 25px;
  width: 25%;
  height: 25%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #05a7ab;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button:hover {background-color: #049498}

.button:active {
  background-color: #049498;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

