Add a button under the title of a column - Dawn theme

Hello everyone.
I’m using the Dawn theme.
Can someone please give me a code, so that it is possible to add a button under the title of a single column?
Thank you

www.ankitimes.com

@Ann21

Please share the page URL because this section is not available on the home page.

Thanks!

https://ankitimes.com/collections

@Ann21

By adding below css you can make link label look like button

a.full-unstyled-link {
    border: 2px solid black;
    width: 50%;
    border-radius: 20px;
    color: white;
    background-color: black;
    text-align: center;
}

Like wise in this your site by adding css

.card__text-spacing>* {
    margin: 0;
    text-align: center;
    width: 95%;
    border-radius: 20px;
    color: white;
    background-color: black;
}

Can you please tell me exactly where to add the code? And secondly, I want the button to be the same button as on the whole site.
Thank you

Add below css into base.css file (0nline store->themes->Edit code->assets->base.css)

.card__text-spacing>* {
    margin: 0;
    text-align: center;
    width: 95%;
    color: yellow;
    background-color: black;
}
.multicolumn-list h3, .multicolumn-list p {
    margin: 0;
    color: yellow;
    width: 20%;
    background-color: black;
}

Thank you but I don’t want to change the collection list.
I want a column in a multi-column, to have a button under the title like in the attached example, and for the button to be the same button as in my entire site.