button{
    outline: none;
    cursor: pointer;
    display: block;
    position: relative;
    text-align: center;
    border: none;
    border-radius: 8px;
    padding: 1em 2em;
    background: #FFF;
    color: #6d626e;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 5px 0 1px #492e4b;
    transition: all .4s ease;
}

button:focus,
button:hover{
    background: rgba(255,255,255,.8);
}