.btn {
  background: #f2d39e;
  background-image: -webkit-linear-gradient(top, #f2d39e, #e69c07);
  background-image: -moz-linear-gradient(top, #f2d39e, #e69c07);
  background-image: -ms-linear-gradient(top, #f2d39e, #e69c07);
  background-image: -o-linear-gradient(top, #f2d39e, #e69c07);
  background-image: linear-gradient(to bottom, #f2d39e, #e69c07);
  -webkit-border-radius: 60;
  -moz-border-radius: 60;
  border-radius: 60px;
  text-shadow: 1px 1px 3px #666666;
  font-family: Arial;
  color: #fff;
  font-size: 15px;
  padding: 5px 5px 5px 5px;
  text-decoration: none;
}

.btn:hover {
  background: #85c5ed;
  background-image: -webkit-linear-gradient(top, #85c5ed, #22658f);
  background-image: -moz-linear-gradient(top, #85c5ed, #22658f);
  background-image: -ms-linear-gradient(top, #85c5ed, #22658f);
  background-image: -o-linear-gradient(top, #85c5ed, #22658f);
  background-image: linear-gradient(to bottom, #85c5ed, #22658f);
  text-decoration: none;
}