button{
    position: relative;
    cursor: pointer;
    display: block;
    background: linear-gradient(#f87f33 0%, #c6530c 100%);
    border: none;
    color: #ffeecc;
    padding: .5em 2em;
    font-family:  serif;
    font-size: 24px;
    font-style: italic;
    text-transform: lowercase;
    text-shadow: 1px 1px 0 #b55e06;
    line-height: 1;
    border-radius: 30px;
    border: 2px solid #ffeecc;
    box-shadow: 0 0 0 3px #f37f36;
    transition: all .3s ease;
}

button:hover{
    background: linear-gradient(#f78e4d 0%, #c95d19 100%);
    box-shadow: 0 0 0 3px #f78e4d;
}