Hi Andrei,
you can try this markup:
<div class="double-button">
<a class="button" href="#">Button 1</a>
<a class="button" href="#">Button 2</a>
</div>
And this CSS:
.double-button {
display: flex;
justify-content: center;
}
.double-button a {
margin: 20px
}
.button {
border-radius: 30px;
}
And then you can style the button colours via the customiser. If you want one of the buttons to be a different color then you can add another class to it and style that like you did with the navigation CTA.