button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    padding: 1.25em 2.25em;
    border: none;
    border-radius: 4px;
    color: #fcb00b;
    background-color: #FFF;
    box-shadow: 0px 0px 10px #9a6f0f;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .25em;
    transition: all .2s ease;
}

button:hover,
button:focus{
    box-shadow: 0px 0px 10px 3px #9a6f0f;
}