.button
{
height: 3rem;
display: inline-block;
padding: 0 2em;
border-radius: 3rem;
background-color: #80b7b3;
-webkit-box-shadow: 0px 5px 1px rgba(0, 0, 0, .5);
box-shadow: 0px 5px 1px rgba(0, 0, 0, .5);
font: 400 .95rem/3.4 arial, helvetica, sana-serif;
color: black; /* #ffffff */
text-transform: uppercase;
text-decoration: none;
letter-spacing: 2.8px;
transition: all 250ms;
}
.button:hover
{
background-color: #511e23;
color: white;
}
.button:active
{
transform: translatey(3px);
-webkit-box-shadow: none;
box-shadow: none;
}