button{
    outline: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    border-radius: 50px 15px 35px 0;
    background-color: rgba(0,0,0,.2);
    color: #fff;
    padding: 1em 2em;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .3em;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px #000;
    box-shadow: 2px 2px 5px rgba(3, 95, 8, 0.73);
    transition: all .4s ease;
}

button:before{
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    background-image: -webkit-repeating-linear-gradient(-65deg, #f1c900, #f1c900 10px, #673f00 20px, #673f00 25px);
    background-image: repeating-linear-gradient(-65deg, #f1c900, #f1c900 10px, #673f00 20px, #673f00 25px);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

button:hover{
    background-color: transparent;
}