buttons style : demo 255

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)

CSS

(Fonts required: Righteous.)
                        :root{ 
                           --color: #e47600;
                        }
                        .btn{
                            color: var(--color);
                            font-family: "Righteous", sans-serif;
                            font-size: 18px;
                            font-weight: 600;
                            text-transform: capitalize;
                            letter-spacing: 1px;
                            padding: 4px 10px;
                            border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
                            border: 2px solid var(--color);
                            position: relative;
                            margin: 0 10px;
                            transition: all 0.3s ease-in-out;
                        } 
                        .btn:hover,
                        .btn:focus{ 
                            color: var(--color);
                            border: 2px dashed var(--color);
                            border-radius: 4% 95% 6% 95% / 95% 4% 92% 5%;
                        }
                        @media only screen and (max-width: 767px){
                            .btn{ margin-bottom: 30px; }
                        }
                    
License Terms