#button{
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-o-box-flex: 0;
	box-flex: 0;
	text-align:center;
	margin-bottom: 0px;
	font-size:21px;
	}


.button {
	display: inline-block;
	padding:0 5px 0 5px;
	height:80px;
	text-align: center;
	text-decoration: none;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.button {
	position: relative;
	z-index: 2;
	background-color: #FFCC00;
	color: #eee;
	overflow: hidden;
}
.button:hover {
	color: #EEE;
}
.button::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(.5);
	transform: scale(.5);
}
.button:hover::after {
	background: #FF8000;
	-webkit-transform: scale(1);
	transform: scale(1);
}




.btn {
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  cursor: pointer;
  letter-spacing: 2px;
  position:relative;
  overflow:hidden;
  margin: 0 0px;
	color:#333;
}

.btn:hover {
color: #ff9999;
}







