You can create your own button using the Embed Site block.
Once the block is added, make sure it’s set to code, then add the following code or any other button code that you like:
<center>
<a class="continually">Book A Demo</a>
</center>
<style>
.continually {
display: inline-block;
width: 16em;
font-family: inherit;
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: 500;
color: #000;
background-color: #fff;
border: none;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease 0s;
cursor: pointer;
outline: none;
font-size: 1rem;
padding: 1.2rem 0rem;
margin: 5px;
text-decoration: none !important;
}
.continually:hover
{
background-color: #000;
color: #fff;
transform: translateY(-7px);
}
</style>