/******************************************  
 CUSTOM STYLESHEET
*******************************************/

/*
* You can place your custom CSS statements in this file, after this message.
* It is better to write everything custom here
* because this file won't be replaced during updates.
* 
* Simply copy an existing style from style.css to this file, 
* and modify it to your liking.
*/
.btn {
  background: #76f7d5;
  background-image: -webkit-linear-gradient(top, #76f7d5, #286933);
  background-image: -moz-linear-gradient(top, #76f7d5, #286933);
  background-image: -ms-linear-gradient(top, #76f7d5, #286933);
  background-image: -o-linear-gradient(top, #76f7d5, #286933);
  background-image: linear-gradient(to bottom, #76f7d5, #286933);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 3px 3px 3px #666666;
  font-family: Georgia;
  color: #ffffff;
  font-size: 23px;
  padding: 15px 20px 15px 20px;
  text-decoration: none;
}

.btn:hover {
  background: #cee837;
  background-image: -webkit-linear-gradient(top, #cee837, #689619);
  background-image: -moz-linear-gradient(top, #cee837, #689619);
  background-image: -ms-linear-gradient(top, #cee837, #689619);
  background-image: -o-linear-gradient(top, #cee837, #689619);
  background-image: linear-gradient(to bottom, #cee837, #689619);
  text-decoration: none;
}


