button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: 3px solid #FFF;
    border-radius: 50px;
    padding: .75em 1.25em;
    background: linear-gradient(#c7c7c7 0%, #6d6d6d 100%);
    color: #FFF;
    font-family: serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1;
    text-transform: lowercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,.5);
    box-shadow: 0 0 5px rgba(0,0,0,.5);
}

button:focus,
button:hover{
    background: linear-gradient(#d9d9d9 0%, #898989 100%);
}